first step to creating dream lib

This commit is contained in:
2025-02-07 00:56:53 +03:00
parent 2c77ba6b46
commit 60d7844946
14 changed files with 327 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
class InvalidCommandInstanceException(Exception):
def __str__(self):
return "Invalid Command Instance"
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"