mirror of
https://github.com/craigerl/aprsd.git
synced 2024-11-15 21:01:47 -05:00
Hemna
1c052a63c0
This patch updates the config option checking for required fields in the config yaml file. Specifically for the existence of the aprsd: section and the required fields for the 3 supported client types apris, kiss serial, kiss tcp
14 lines
502 B
Python
14 lines
502 B
Python
class MissingConfigOptionException(Exception):
|
|
"""Missing a config option."""
|
|
def __init__(self, config_option):
|
|
self.message = f"Option '{config_option}' was not in config file"
|
|
|
|
|
|
class ConfigOptionBogusDefaultException(Exception):
|
|
"""Missing a config option."""
|
|
def __init__(self, config_option, default_fail):
|
|
self.message = (
|
|
f"Config file option '{config_option}' needs to be "
|
|
f"changed from provided default of '{default_fail}'"
|
|
)
|