Handle timeout errors.
(request: Request, exc: TimeoutError)
| 55 | |
| 56 | |
| 57 | async def handle_timeout_error(request: Request, exc: TimeoutError) -> JSONResponse: |
| 58 | """Handle timeout errors.""" |
| 59 | return await handle_mac_exception(request, exc) |
| 60 | |
| 61 | |
| 62 | async def handle_external_service_error(request: Request, exc: ExternalServiceError) -> JSONResponse: |
nothing calls this directly
no test coverage detected