mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-01-01 14:20:10 +01:00
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))
|