diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2020-02-18 17:15:57 +0100 |
---|---|---|
committer | Nejc Habjan <hab.nejc@gmail.com> | 2020-02-18 17:17:28 +0100 |
commit | 5298964ee7db8a610f23de2d69aad8467727ca97 (patch) | |
tree | 0628312b25920cd8107026fd8766eb7d737b122b /gitlab/exceptions.py | |
parent | 19242c398b9074e04e35cc687c31c543a10db280 (diff) | |
download | gitlab-5298964ee7db8a610f23de2d69aad8467727ca97.tar.gz |
feat: add support for commit revert API (#991)
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 aff3c87..d6791f2 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -245,6 +245,10 @@ class GitlabRepairError(GitlabOperationError): pass +class GitlabRevertError(GitlabOperationError): + pass + + class GitlabLicenseError(GitlabOperationError): pass |