mirror of
https://github.com/jketterl/openwebrx.git
synced 2025-12-06 07:12:09 +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))
|