mirror of
https://github.com/ha7ilm/openwebrx.git
synced 2026-04-05 06:25:19 +00:00
3 lines
153 B
Python
3 lines
153 B
Python
class ConfigError(Exception):
|
|
def __init__(self, key, message):
|
|
super().__init__("Configuration Error (key: {0}): {1}".format(key, message))
|