diff options
author | Nejc Habjan <nejc.habjan@siemens.com> | 2022-07-23 16:06:36 +0200 |
---|---|---|
committer | John Villalovos <john@sodarock.com> | 2022-07-23 14:33:44 -0700 |
commit | 7afd34027a26b5238a979e3303d8e5d8a0320a07 (patch) | |
tree | 20bbab2084c153d39e3f9b0ac41255b426c9ce5c /gitlab/exceptions.py | |
parent | 4794ecc45d7aa08785c622918d08bb046e7359ae (diff) | |
download | gitlab-7afd34027a26b5238a979e3303d8e5d8a0320a07.tar.gz |
feat: add support for group and project invitations API
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 9ee64e3..ae3a9d7 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -250,6 +250,10 @@ class GitlabImportError(GitlabOperationError): pass +class GitlabInvitationError(GitlabOperationError): + pass + + class GitlabCherryPickError(GitlabOperationError): pass |