Files
lilac-customcmd-plugin/customcmd/parser/errors.py
T

10 lines
184 B
Python

class CommandError(Exception):
def __init__(self, msg=None, **kwargs):
super().__init__(**kwargs)
self.msg = msg
class CommandValueError(CommandError):
pass