5 lines
154 B
Python
5 lines
154 B
Python
|
class DomainError(Exception):
|
||
|
def __init__(self, message: str, *args: object) -> None:
|
||
|
super().__init__(*args)
|
||
|
self.message = message
|