diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2016-10-03 06:31:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-03 06:31:48 +0200 |
commit | d4a24a5c4dc54ac03b917723347047e3995afcc9 (patch) | |
tree | a389fba31a2888908cf532d7121a85fe477cb4f3 /gitlab/exceptions.py | |
parent | 7d424ae5a4dad41533af7add24d728c315563022 (diff) | |
parent | 3b3930b5525e7ea46afc271949f52d02adc6b5ce (diff) | |
download | gitlab-d4a24a5c4dc54ac03b917723347047e3995afcc9.tar.gz |
Merge pull request #159 from JonathonReinhart/158-erase-build
Add ProjectBuild.erase()
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 7b0f7f0..0fc8617 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -95,6 +95,10 @@ class GitlabBuildRetryError(GitlabRetryError): pass +class GitlabBuildEraseError(GitlabRetryError): + pass + + class GitlabPipelineRetryError(GitlabRetryError): pass |