File system-related errors.
| 55 | |
| 56 | |
| 57 | class FileSystemError(CodeWikiError): |
| 58 | """File system-related errors.""" |
| 59 | |
| 60 | def __init__(self, message: str): |
| 61 | super().__init__(message, EXIT_FILESYSTEM_ERROR) |
| 62 | |
| 63 | |
| 64 | def handle_error(error: Exception, verbose: bool = False) -> int: |
no outgoing calls
no test coverage detected