diff options
author | Nejc Habjan <nejc.habjan@siemens.com> | 2022-07-09 13:56:33 +0200 |
---|---|---|
committer | John Villalovos <john@sodarock.com> | 2022-07-09 08:22:20 -0700 |
commit | 3b1ede4a27cd730982d4c579437c5c689a8799e5 (patch) | |
tree | 62889d73ce7a6523ff8036a6006111695fbc2894 /gitlab/exceptions.py | |
parent | 0daec5fa1428a56a6a927b133613e8b296248167 (diff) | |
download | gitlab-3b1ede4a27cd730982d4c579437c5c689a8799e5.tar.gz |
feat: support validating CI lint results
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 8465838..4a2f1dc 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -62,6 +62,10 @@ class GitlabParsingError(GitlabError): pass +class GitlabCiLintError(GitlabError): + pass + + class GitlabConnectionError(GitlabError): pass |