Repository-related errors.
| 41 | |
| 42 | |
| 43 | class RepositoryError(CodeWikiError): |
| 44 | """Repository-related errors.""" |
| 45 | |
| 46 | def __init__(self, message: str): |
| 47 | super().__init__(message, EXIT_REPOSITORY_ERROR) |
| 48 | |
| 49 | |
| 50 | class APIError(CodeWikiError): |
no outgoing calls
no test coverage detected