diff options
author | Jeroen Schutrup <jschutrup@bol.com> | 2019-07-11 16:25:21 +0200 |
---|---|---|
committer | Max Wittig <max.wittig95@gmail.com> | 2019-07-21 13:13:38 +0200 |
commit | 3520b453f75c9727eafe8e997ee8274933c6f0fd (patch) | |
tree | 3e1c2fc2d885fa5e7b664f20d1412174b1ca6a06 /gitlab/exceptions.py | |
parent | c8a7e31cb57e3be7287ba237dbda7c4efa195b29 (diff) | |
download | gitlab-rebase-mr.tar.gz |
feat: add mr rebase methodrebase-mr
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 449b6f0..d644e0f 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -173,6 +173,10 @@ class GitlabMRApprovalError(GitlabOperationError): pass +class GitlabMRRebaseError(GitlabOperationError): + pass + + class GitlabMRClosedError(GitlabOperationError): pass |