forked from HoloTech/customcmd-plugin
19da69b3e8
Working base grammar, visitor, client, context. Good test coverage for grammar constructs.
10 lines
184 B
Python
10 lines
184 B
Python
|
|
class CommandError(Exception):
|
|
def __init__(self, msg=None, **kwargs):
|
|
super().__init__(**kwargs)
|
|
self.msg = msg
|
|
|
|
class CommandValueError(CommandError):
|
|
pass
|
|
|