(status_code=exc.HTTPInternalServerError.code, message="Unhandled exception")
| 75 | |
| 76 | |
| 77 | def abort(status_code=exc.HTTPInternalServerError.code, message="Unhandled exception"): |
| 78 | raise exc.status_map[status_code](message) |
| 79 | |
| 80 | |
| 81 | def abort_unauthorized(msg=None): |
no outgoing calls
no test coverage detected