diff options
author | Christian Sattler <sattler.christian@gmail.com> | 2022-01-05 18:00:45 +0100 |
---|---|---|
committer | John Villalovos <john@sodarock.com> | 2022-01-13 17:17:20 -0800 |
commit | 0007006c184c64128caa96b82dafa3db0ea1101f (patch) | |
tree | 021d517ebf6ec79d914b331eb3442d18b33f2be8 /gitlab/exceptions.py | |
parent | 2c62d91a67442b21ce3011a2ba5aec7360ca766f (diff) | |
download | gitlab-0007006c184c64128caa96b82dafa3db0ea1101f.tar.gz |
feat: add support for Groups API method `transfer()`
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 6b86471..54f9b8c 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -107,6 +107,10 @@ class GitlabTransferProjectError(GitlabOperationError): pass +class GitlabGroupTransferError(GitlabOperationError): + pass + + class GitlabProjectDeployKeyError(GitlabOperationError): pass |