diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2016-10-03 06:39:44 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2016-10-03 06:39:44 +0200 |
commit | 673dc3636e5ab6846c88cb4dac71f0690b02494d (patch) | |
tree | 450c5cacdf0307d4149ecb1af8a4145562dd7c64 /gitlab/exceptions.py | |
parent | d4a24a5c4dc54ac03b917723347047e3995afcc9 (diff) | |
download | gitlab-673dc3636e5ab6846c88cb4dac71f0690b02494d.tar.gz |
Implement ProjectBuild.play()
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 0fc8617..733551f 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -95,6 +95,10 @@ class GitlabBuildRetryError(GitlabRetryError): pass +class GitlabBuildPlayError(GitlabRetryError): + pass + + class GitlabBuildEraseError(GitlabRetryError): pass |