Handle configuration errors.
(request: Request, exc: ConfigurationError)
| 35 | |
| 36 | |
| 37 | async def handle_configuration_error(request: Request, exc: ConfigurationError) -> JSONResponse: |
| 38 | """Handle configuration errors.""" |
| 39 | return await handle_mac_exception(request, exc) |
| 40 | |
| 41 | |
| 42 | async def handle_workflow_execution_error(request: Request, exc: WorkflowExecutionError) -> JSONResponse: |
nothing calls this directly
no test coverage detected