diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2018-05-29 06:57:36 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2018-05-29 06:57:36 +0200 |
commit | 9be50be98468e78400861718202f48eddfa83839 (patch) | |
tree | c9ad4f5bc8e1e619466153693b222a35bd7627a8 /gitlab/exceptions.py | |
parent | fbd2010e09f0412ea52cd16bb26cf988836bc03f (diff) | |
download | gitlab-9be50be98468e78400861718202f48eddfa83839.tar.gz |
Implement the markdown rendering API
Testing will be enable when GitLab 11.0 is available.
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 9e3fa4a..64f3243 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -205,6 +205,10 @@ class GitlabStopError(GitlabOperationError): pass +class GitlabMarkdownError(GitlabOperationError): + pass + + def on_http_error(error): """Manage GitlabHttpError exceptions. |