(request: Request, exc: HTTPException)
| 26 | |
| 27 | |
| 28 | async def error_500(request: Request, exc: HTTPException) -> JSONResponse: |
| 29 | return JSONResponse({class="st">"detail": class="st">"Server Error"}, status_code=500) |
| 30 | |
| 31 | |
| 32 | async def method_not_allowed(request: Request, exc: HTTPException) -> JSONResponse: |
nothing calls this directly
no test coverage detected