diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2017-11-04 09:10:40 +0100 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2017-11-04 09:10:40 +0100 |
commit | 4fb2e439803bd55868b91827a5fbaa448f1dff56 (patch) | |
tree | d34db7c329b2d9e1a684fb1d7429014c9500d317 /gitlab/exceptions.py | |
parent | 32f7e17208987fa345670421c333e22ae6aced6a (diff) | |
download | gitlab-4fb2e439803bd55868b91827a5fbaa448f1dff56.tar.gz |
Add users custome attributes support
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 a100395..d95bb08 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -77,6 +77,10 @@ class GitlabDeleteError(GitlabOperationError): pass +class GitlabSetError(GitlabOperationError): + pass + + class GitlabProtectError(GitlabOperationError): pass |