4 lines
124 B
Python
4 lines
124 B
Python
|
|
class DelimiterNotFoundException(Exception):
|
||
|
|
|
||
|
|
def __init__(self, *args: object) -> None:
|
||
|
|
super().__init__(*args)
|