diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-10-20 23:02:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-20 23:02:47 +0200 |
commit | 853d8505997b8b052d4421bb64c91dc499cecc90 (patch) | |
tree | 0596d9782a50a60e95d1677c17f9a02428993d1d /gitlab/exceptions.py | |
parent | 905781bed2afa33634b27842a42a077a160cffb8 (diff) | |
parent | 6d7c88a1fe401d271a34df80943634652195b140 (diff) | |
download | gitlab-853d8505997b8b052d4421bb64c91dc499cecc90.tar.gz |
Merge pull request #1610 from StingRayZA/add-label-promote
feat(api): add project label promotion
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 6f2d4c4..66b1ee0 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -111,6 +111,10 @@ class GitlabProjectDeployKeyError(GitlabOperationError): pass +class GitlabPromoteError(GitlabOperationError): + pass + + class GitlabCancelError(GitlabOperationError): pass |