arz_api.exceptions
1class ArizonaException(Exception): 2 pass 3 4 5class IncorrectLoginData(Exception): 6 def __init__(self, *args: object) -> None: 7 super().__init__(*args) 8 9 def __str__(self) -> str: 10 return "Вы ввели неверные cookie!" 11 12 13class ThisIsYouError(ArizonaException): 14 def __init__(self, user_id): 15 self.user_id = user_id 16 17 def __str__(self) -> str: 18 return f"Вы не можете совершить данное действие самому себе\nID пользователя: {self.user_id}"
class
ArizonaException(builtins.Exception):
Common base class for all non-exit exceptions.
class
IncorrectLoginData(builtins.Exception):
6class IncorrectLoginData(Exception): 7 def __init__(self, *args: object) -> None: 8 super().__init__(*args) 9 10 def __str__(self) -> str: 11 return "Вы ввели неверные cookie!"
Common base class for all non-exit exceptions.
14class ThisIsYouError(ArizonaException): 15 def __init__(self, user_id): 16 self.user_id = user_id 17 18 def __str__(self) -> str: 19 return f"Вы не можете совершить данное действие самому себе\nID пользователя: {self.user_id}"
Common base class for all non-exit exceptions.