Files
Argenta/argenta/router/exceptions.py
T
2025-02-13 23:26:01 +03:00

14 lines
408 B
Python

class InvalidDescriptionInstanceException(Exception):
def __str__(self):
return "Invalid Description Instance"
class UnknownCommandHandlerHasAlreadyBeenCreatedException(Exception):
def __str__(self):
return "Only one unknown command handler can be declared"
class RepeatedCommandException(Exception):
def __str__(self):
return "Commands in handler cannot be repeated"