(self, scope: Scope, receive: Receive, send: Send)
| 50 | |
| 51 | class HandledExcAfterResponse: |
| 52 | async def __call__(self, scope: Scope, receive: Receive, send: Send) -> None: |
| 53 | response = PlainTextResponse("OK", status_code=200) |
| 54 | await response(scope, receive, send) |
| 55 | raise HTTPException(status_code=406) |
| 56 | |
| 57 | |
| 58 | router = Router( |
nothing calls this directly
no test coverage detected