diff options
author | Nejc Habjan <nejc.habjan@siemens.com> | 2022-07-23 18:16:24 +0200 |
---|---|---|
committer | John Villalovos <john@sodarock.com> | 2022-07-23 10:32:57 -0700 |
commit | 4794ecc45d7aa08785c622918d08bb046e7359ae (patch) | |
tree | 60878cab2e063f48e21161cdba81943e0c061006 /gitlab/exceptions.py | |
parent | 98336320a66d1859ba73e084a5e86edc3aa1643c (diff) | |
download | gitlab-4794ecc45d7aa08785c622918d08bb046e7359ae.tar.gz |
feat(projects): add support for project restore 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 4a2f1dc..9ee64e3 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -286,6 +286,10 @@ class GitlabRepairError(GitlabOperationError): pass +class GitlabRestoreError(GitlabOperationError): + pass + + class GitlabRevertError(GitlabOperationError): pass |