diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2018-05-29 19:32:26 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2018-05-29 19:32:26 +0200 |
commit | 9412a5ddb1217368e0ac19fc06a4ff32711b931f (patch) | |
tree | be513e71cef4ebdab12014a312a73a6091819924 /gitlab/exceptions.py | |
parent | 01a41efd271dd08d4b5744473fb71a67d9f5dea5 (diff) | |
download | gitlab-9412a5ddb1217368e0ac19fc06a4ff32711b931f.tar.gz |
Add support for group badges
Also consolidate project/group badges tests, and add some docs
Fixes #469
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 6912e33..514d742 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -213,6 +213,10 @@ class GitlabVerifyError(GitlabOperationError): pass +class GitlabRenderError(GitlabOperationError): + pass + + def on_http_error(error): """Manage GitlabHttpError exceptions. |