1
Fork 0
mirror of https://github.com/RGBCube/GitHubWrapper synced 2025-05-18 06:55:09 +00:00

Getting issues added

This commit is contained in:
VarMonke 2022-03-30 20:46:18 +05:30
parent 6ed2deb92d
commit 5e44401601
5 changed files with 55 additions and 1 deletions

View file

@ -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):