4 lines
98 B
Python
4 lines
98 B
Python
|
|
class CommandException(Exception):
|
||
|
|
def __init__(self, *args):
|
||
|
|
super().__init__(*args)
|