Configuration-related errors.
| 34 | |
| 35 | |
| 36 | class ConfigurationError(CodeWikiError): |
| 37 | """Configuration-related errors.""" |
| 38 | |
| 39 | def __init__(self, message: str): |
| 40 | super().__init__(message, EXIT_CONFIG_ERROR) |
| 41 | |
| 42 | |
| 43 | class RepositoryError(CodeWikiError): |
no outgoing calls
no test coverage detected