diff options
author | Asher256@users.noreply.github.com <Asher256> | 2016-10-30 22:18:42 -0400 |
---|---|---|
committer | Asher256@users.noreply.github.com <Asher256> | 2016-10-30 22:18:42 -0400 |
commit | 61d4cac5c711268ef80e52404c047da2a1f415ca (patch) | |
tree | dc62c8e37124d460bc3c0a2bad781e3288da8899 /gitlab/exceptions.py | |
parent | fc5c52ce6595784a13e9c114a2ef9b7c9aeaf39a (diff) | |
download | gitlab-61d4cac5c711268ef80e52404c047da2a1f415ca.tar.gz |
New exception for ProjectKey.enable_deploy_key and disable_deploy_key
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 733551f..1d1f477 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -75,6 +75,10 @@ class GitlabTransferProjectError(GitlabOperationError): pass +class GitlabProjectDeployKeyError(GitlabOperationError): + pass + + class GitlabCancelError(GitlabOperationError): pass |