mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 18:15:28 +03:00
14 lines
353 B
Python
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"
|