diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2019-01-14 07:16:43 +0100 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2019-01-14 07:30:03 +0100 |
commit | f404d394960683d68ccaf3c129f75a2582a2fb77 (patch) | |
tree | d1303b44b3291db3088c9ac978db7c8efc23d0ca /gitlab/exceptions.py | |
parent | 89679ce5ee502e57dbe7cec2b78f4f70b85fd3a5 (diff) | |
download | gitlab-feat/count.tar.gz |
[WIP] feat(api): Implement a count() methodfeat/count
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 0822d3e..317f243 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -70,6 +70,10 @@ class GitlabListError(GitlabOperationError): pass +class GitlabCountError(GitlabOperationError): + pass + + class GitlabGetError(GitlabOperationError): pass |