diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2020-04-05 21:56:43 +0200 |
---|---|---|
committer | Nejc Habjan <hab.nejc@gmail.com> | 2020-04-05 22:48:33 +0200 |
commit | 6cb9d9238ea3cc73689d6b71e991f2ec233ee8e6 (patch) | |
tree | 3b94bc78d2f32e6e1368874d807b3aca8e5ab231 /gitlab/exceptions.py | |
parent | 6ce5d1f14060a403f05993d77bf37720c25534ba (diff) | |
download | gitlab-6cb9d9238ea3cc73689d6b71e991f2ec233ee8e6.tar.gz |
feat(api): add support for Group Import/Export API (#1037)
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 d6791f2..099a901 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -209,6 +209,10 @@ class GitlabAttachFileError(GitlabOperationError): pass +class GitlabImportError(GitlabOperationError): + pass + + class GitlabCherryPickError(GitlabOperationError): pass |