Handle resource not found errors.
(request: Request, exc: ResourceNotFoundError)
| 45 | |
| 46 | |
| 47 | async def handle_resource_not_found_error(request: Request, exc: ResourceNotFoundError) -> JSONResponse: |
| 48 | """Handle resource not found errors.""" |
| 49 | return await handle_mac_exception(request, exc) |
| 50 | |
| 51 | |
| 52 | async def handle_resource_conflict_error(request: Request, exc: ResourceConflictError) -> JSONResponse: |
nothing calls this directly
no test coverage detected