3 lines
108 B
Python
3 lines
108 B
Python
|
class ConfigError(Exception):
|
||
|
def __init__(self, *args: object) -> None:
|
||
|
super().__init__(*args)
|