4 lines
153 B
Python
4 lines
153 B
Python
class ConfigError(Exception):
|
|
def __init__(self, key, message):
|
|
super().__init__("Configuration Error (key: {0}): {1}".format(key, message))
|