| 59 | # ============================================================ |
| 60 | |
| 61 | class ConfigError(Exception): |
| 62 | def __init__(self, message: str, kind: str = "parse"): |
| 63 | self.kind = kind # "io" or "parse" |
| 64 | super().__init__(message) |
| 65 | |
| 66 | |
| 67 | # ============================================================ |
no outgoing calls
no test coverage detected