(e)
| 186 | |
| 187 | @app.errorhandler(HTTPException) |
| 188 | def catchall_exception_handler(e): |
| 189 | assert isinstance(e, HTTPException) |
| 190 | assert isinstance(e, NotFound) |
| 191 | return "default" |
| 192 | |
| 193 | @app.errorhandler(Forbidden) |
| 194 | def catchall_forbidden_handler(e): |
nothing calls this directly
no outgoing calls
no test coverage detected