diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2018-06-13 21:39:28 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2018-06-13 21:39:28 +0200 |
commit | 5183069722224914bd6c2d25996163861183415b (patch) | |
tree | 7553c28a98a6d6320346751bd813748299e5de83 /gitlab/exceptions.py | |
parent | 3f88ad0dd92b6d5e418e2a615b57dc62a5f7b870 (diff) | |
download | gitlab-5183069722224914bd6c2d25996163861183415b.tar.gz |
Add support for the EE license API
Diffstat (limited to 'gitlab/exceptions.py')
-rw-r--r-- | gitlab/exceptions.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gitlab/exceptions.py b/gitlab/exceptions.py index 4aec7fc..6736f67 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -221,6 +221,10 @@ class GitlabRepairError(GitlabOperationError): pass +class GitlabLicenseError(GitlabOperationError): + pass + + def on_http_error(error): """Manage GitlabHttpError exceptions. |