diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2018-06-09 17:22:39 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2018-06-09 17:22:47 +0200 |
commit | 39c8ad5a9405469370e429548e08aa475797b92b (patch) | |
tree | 5f27f5e22bb290aba927a84df81a9453b0aa9bc5 /gitlab/exceptions.py | |
parent | 5a855fdb7f9eadc00e8b917d43a601fdc45d514a (diff) | |
download | gitlab-39c8ad5a9405469370e429548e08aa475797b92b.tar.gz |
Add geo nodes API support
Fixes #524
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 514d742..4aec7fc 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -217,6 +217,10 @@ class GitlabRenderError(GitlabOperationError): pass +class GitlabRepairError(GitlabOperationError): + pass + + def on_http_error(error): """Manage GitlabHttpError exceptions. |