diff options
Diffstat (limited to 'bot/utils/exceptions.py')
| -rw-r--r-- | bot/utils/exceptions.py | 9 | 
1 files changed, 6 insertions, 3 deletions
diff --git a/bot/utils/exceptions.py b/bot/utils/exceptions.py index 5ccd6139..73c8e3e1 100644 --- a/bot/utils/exceptions.py +++ b/bot/utils/exceptions.py @@ -1,3 +1,5 @@ +from typing import Optional +  class UserNotPlayingError(Exception):      """Raised when users try to use game commands when they are not playing.""" @@ -6,9 +8,10 @@ class UserNotPlayingError(Exception):  class ExternalAPIError(Exception): -    """Raised when an external API(eg. Wikipedia) returns an error.""" +    """Raised when an external API(eg. Wikipedia) returns an error response.""" -    def __init__(self, api: str): +    def __init__(self, api: str, status_code: int, error_msg: Optional[str] = None):          super().__init__()          self.api = api -    pass +        self.status_code = status_code +        self.error_msg = error_msg  |