feat: Data and client framework
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
|
||||
class CommandError(Exception):
|
||||
def __init__(self, msg=None, **kwargs):
|
||||
super().__init__(**kwargs)
|
||||
self.msg = msg
|
||||
|
||||
class CommandValueError(CommandError):
|
||||
pass
|
||||
|
||||
Reference in New Issue
Block a user