Handle workflow execution errors.
(request: Request, exc: WorkflowExecutionError)
| 40 | |
| 41 | |
| 42 | async def handle_workflow_execution_error(request: Request, exc: WorkflowExecutionError) -> JSONResponse: |
| 43 | """Handle workflow execution errors.""" |
| 44 | return await handle_mac_exception(request, exc) |
| 45 | |
| 46 | |
| 47 | async def handle_resource_not_found_error(request: Request, exc: ResourceNotFoundError) -> JSONResponse: |
nothing calls this directly
no test coverage detected