Indicates that the config file is wrong.
| 75 | |
| 76 | |
| 77 | class InvalidConfigFileError(ConfigFileError): |
| 78 | """Indicates that the config file is wrong.""" |
| 79 | |
| 80 | def __init__(self, conf_path: Path, quiet: bool): |
| 81 | msg = str(conf_path) |
| 82 | printf_exception(self, "INVALID CONFIG FILE", msg=msg, quiet=quiet) |
| 83 | super().__init__(msg) |
| 84 | |
| 85 | |
| 86 | class MultipleConfigFilesError(ConfigFileError): |
no outgoing calls
no test coverage detected