File not found errors (extension layer).
| 367 | |
| 368 | @dataclass(frozen=True) |
| 369 | class ApiFileNotFoundError(ApiError): |
| 370 | """File not found errors (extension layer).""" |
| 371 | |
| 372 | filepath: Optional[str] = None |
| 373 | |
| 374 | def code(self) -> int: |
| 375 | return 10100 |
| 376 | |
| 377 | |
| 378 | @dataclass(frozen=True) |
no outgoing calls
no test coverage detected