diff options
| author | James Johnson <d0c.s4vage@gmail.com> | 2017-09-11 23:20:08 -0500 |
|---|---|---|
| committer | Gauvain Pocentek <gauvain@pocentek.net> | 2017-09-12 06:20:08 +0200 |
| commit | 29879d61d117ff7909302ed845a6a1eb13814365 (patch) | |
| tree | fafcb7f7003cc4b5a4146ea6090a76d9bf82082e /gitlab/exceptions.py | |
| parent | fd40fce913fbb3cd0e3aa2fd042e20bf1d51e9d6 (diff) | |
| download | gitlab-29879d61d117ff7909302ed845a6a1eb13814365.tar.gz | |
adds project upload feature (#239)
Diffstat (limited to 'gitlab/exceptions.py')
| -rw-r--r-- | gitlab/exceptions.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gitlab/exceptions.py b/gitlab/exceptions.py index 6aad810..a100395 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -173,6 +173,14 @@ class GitlabTimeTrackingError(GitlabOperationError): pass +class GitlabUploadError(GitlabOperationError): + pass + + +class GitlabAttachFileError(GitlabOperationError): + pass + + class GitlabCherryPickError(GitlabOperationError): pass |
