diff options
author | Max Wittig <max.wittig@siemens.com> | 2020-04-22 08:27:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-22 08:27:49 +0200 |
commit | 9d66cb3ccc8d9edac68380b4b8ff285a9782e698 (patch) | |
tree | ab04f82adbfd84c9f42fb77cd434bf9c52179b72 /gitlab/exceptions.py | |
parent | 7907e5a4b602d22d03d71ca51c6803f634bd8a78 (diff) | |
parent | 930122b1848b3d42af1cf8567a065829ec0eb44f (diff) | |
download | gitlab-9d66cb3ccc8d9edac68380b4b8ff285a9782e698.tar.gz |
Merge pull request #1069 from zillow/feat/add-custom-pipeline-schedule-play
feat: Add play command to project pipeline schedules
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 |