diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2018-05-21 16:21:48 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2018-05-21 16:21:48 +0200 |
commit | 97c8619c5b07abc714417d6e5be2f553270b54a6 (patch) | |
tree | ff7ac748615cf0a2b18eedd9c789b8eaf0396263 /gitlab/exceptions.py | |
parent | b5f9616f21b7dcdf166033d0dba09b3dd2289849 (diff) | |
download | gitlab-97c8619c5b07abc714417d6e5be2f553270b54a6.tar.gz |
Add support for the search API
Fixes #470
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 744890f..00d99c6 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -197,6 +197,10 @@ class GitlabOwnershipError(GitlabOperationError): pass +class GitlabSearchError(GitlabOperationError): + pass + + def on_http_error(error): """Manage GitlabHttpError exceptions. |