Handle security errors.
(request: Request, exc: SecurityError)
| 30 | |
| 31 | |
| 32 | async def handle_security_error(request: Request, exc: SecurityError) -> JSONResponse: |
| 33 | """Handle security errors.""" |
| 34 | return await handle_mac_exception(request, exc) |
| 35 | |
| 36 | |
| 37 | async def handle_configuration_error(request: Request, exc: ConfigurationError) -> JSONResponse: |
nothing calls this directly
no test coverage detected