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

14 lines
353 B
Python

class InvalidCommandInstanceException(Exception):
def __str__(self):
return "Invalid Command Instance"
class InvalidDescriptionInstanceException(Exception):
def __str__(self):
return "Invalid Description Instance"
class InvalidFlagsInstanceException(Exception):
def __str__(self):
return "Invalid Flags Instance"