diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2016-08-27 22:21:49 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2016-08-27 22:21:49 +0200 |
commit | 8257400fd78e0fdc26fdcb207dbc6e923332e209 (patch) | |
tree | 5984672107fc68f0f9b6f7889b3b26f2393efe23 /gitlab/exceptions.py | |
parent | ef2dbf7034aee21ecf225be5cfefee8ab4379bbe (diff) | |
download | gitlab-8257400fd78e0fdc26fdcb207dbc6e923332e209.tar.gz |
Add support for project pipelines
Diffstat (limited to 'gitlab/exceptions.py')
-rw-r--r-- | gitlab/exceptions.py | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/gitlab/exceptions.py b/gitlab/exceptions.py index e07f0cc..7b0f7f0 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -75,11 +75,27 @@ class GitlabTransferProjectError(GitlabOperationError): pass -class GitlabBuildCancelError(GitlabOperationError): +class GitlabCancelError(GitlabOperationError): pass -class GitlabBuildRetryError(GitlabOperationError): +class GitlabBuildCancelError(GitlabCancelError): + pass + + +class GitlabPipelineCancelError(GitlabCancelError): + pass + + +class GitlabRetryError(GitlabOperationError): + pass + + +class GitlabBuildRetryError(GitlabRetryError): + pass + + +class GitlabPipelineRetryError(GitlabRetryError): pass |