mirror of
https://github.com/RGBCube/GitHubWrapper
synced 2025-05-18 06:55:09 +00:00
Getting issues added
This commit is contained in:
parent
6ed2deb92d
commit
5e44401601
5 changed files with 55 additions and 1 deletions
|
@ -54,6 +54,11 @@ class ObjectNotFound(APIError):
|
|||
msg = 'The requested object was not found, ensure spelling is correct before proceeding.'
|
||||
super().__init__(msg)
|
||||
|
||||
class IssueNotFound(APIError):
|
||||
def __init__(self):
|
||||
msg = 'The requested issue was not found, ensure spelling is correct before proceeding.'
|
||||
super().__init__(msg)
|
||||
|
||||
class NoAuthProvided(APIError):
|
||||
"""Raised when no proper authorization or invalid authorization is given to the client"""
|
||||
def __init__(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue