diff options
author | Nejc Habjan <nejc.habjan@siemens.com> | 2022-06-25 01:32:34 +0200 |
---|---|---|
committer | John Villalovos <john@sodarock.com> | 2022-06-25 09:30:03 -0700 |
commit | ce9216ccc542d834be7f29647c7ee98c2ca5bb01 (patch) | |
tree | 3b8ed3ffa476477e3ff8cb4a47ade4e3a8582d47 /gitlab/exceptions.py | |
parent | b0f02facef2ea30f24dbfb3c52974f34823e9bba (diff) | |
download | gitlab-ce9216ccc542d834be7f29647c7ee98c2ca5bb01.tar.gz |
feat(api): support head() method for get and list endpoints
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 602a452..09a72b7 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -82,6 +82,10 @@ class GitlabGetError(GitlabOperationError): pass +class GitlabHeadError(GitlabOperationError): + pass + + class GitlabCreateError(GitlabOperationError): pass |