diff options
Diffstat (limited to 'gitlab/exceptions.py')
-rw-r--r-- | gitlab/exceptions.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gitlab/exceptions.py b/gitlab/exceptions.py index 00d99c6..6912e33 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -201,6 +201,18 @@ class GitlabSearchError(GitlabOperationError): pass +class GitlabStopError(GitlabOperationError): + pass + + +class GitlabMarkdownError(GitlabOperationError): + pass + + +class GitlabVerifyError(GitlabOperationError): + pass + + def on_http_error(error): """Manage GitlabHttpError exceptions. |