diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2018-05-28 08:02:23 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2018-05-28 08:02:23 +0200 |
commit | 9c19e06dbb792308d2fcd4fff1239043981b5f61 (patch) | |
tree | 8a5482d466549514777a4dda426382a53f32198f /gitlab/exceptions.py | |
parent | 677961624fbc5ab190e581ae89c9f0317ac3029e (diff) | |
download | gitlab-9c19e06dbb792308d2fcd4fff1239043981b5f61.tar.gz |
Add support for environment stop()
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 00d99c6..9e3fa4a 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -201,6 +201,10 @@ class GitlabSearchError(GitlabOperationError): pass +class GitlabStopError(GitlabOperationError): + pass + + def on_http_error(error): """Manage GitlabHttpError exceptions. |