Handle external service errors.
(request: Request, exc: ExternalServiceError)
| 60 | |
| 61 | |
| 62 | async def handle_external_service_error(request: Request, exc: ExternalServiceError) -> JSONResponse: |
| 63 | """Handle external service errors.""" |
| 64 | return await handle_mac_exception(request, exc) |
| 65 | |
| 66 | |
| 67 | async def handle_mac_exception(request: Request, exc: MACException) -> JSONResponse: |
nothing calls this directly
no test coverage detected