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