7 lines
165 B
Python
7 lines
165 B
Python
class ConfigurationError(ValueError):
|
|
"""Signal configuration errors."""
|
|
|
|
def __init__(self, msg: str):
|
|
self.msg = msg
|
|
super().__init__(msg)
|