LLM API-related errors.
| 48 | |
| 49 | |
| 50 | class APIError(CodeWikiError): |
| 51 | """LLM API-related errors.""" |
| 52 | |
| 53 | def __init__(self, message: str): |
| 54 | super().__init__(message, EXIT_API_ERROR) |
| 55 | |
| 56 | |
| 57 | class FileSystemError(CodeWikiError): |
no outgoing calls
no test coverage detected