Skip to content

Commit

Permalink
Added GQL Exception necessary for e529c11
Browse files Browse the repository at this point in the history
  • Loading branch information
Arne-Weber authored and Windows200000 committed Feb 2, 2025
1 parent 1d6187c commit 8a36adb
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,11 @@ class CaptchaRequired(LoginException):
"""
def __init__(self):
super().__init__("Captcha is required")


class GQLException(RequestException):
"""
Raised when a GQL request returns an error response.
"""
def __init__(self, message: str):
super().__init__(message)

0 comments on commit 8a36adb

Please sign in to comment.