diff options
author | Christopher Zorn <christopherzo@zillowgroup.com> | 2020-04-08 17:02:29 -0700 |
---|---|---|
committer | Christopher Zorn <christopherzo@zillowgroup.com> | 2020-04-20 16:18:04 -0700 |
commit | 07b99881dfa6efa9665245647460e99846ccd341 (patch) | |
tree | 0ad774c01fdf6045c36eea3be35cf0ab16136273 /gitlab/exceptions.py | |
parent | 7907e5a4b602d22d03d71ca51c6803f634bd8a78 (diff) | |
download | gitlab-07b99881dfa6efa9665245647460e99846ccd341.tar.gz |
feat: add play command to project pipeline schedules
fix: remove version from setup
feat: add pipeline schedule play error exception
docs: add documentation for pipeline schedule 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 f95e686..fd2ff2a 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -145,6 +145,10 @@ class GitlabJobEraseError(GitlabRetryError): pass +class GitlabPipelinePlayError(GitlabRetryError): + pass + + class GitlabPipelineRetryError(GitlabRetryError): pass |