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