Aborts execution and causes a HTTP error.
(code=500, text='Unknown Error.')
| 2424 | |
| 2425 | |
| 2426 | def abort(code=500, text='Unknown Error.'): |
| 2427 | """ Aborts execution and causes a HTTP error. """ |
| 2428 | raise HTTPError(code, text) |
| 2429 | |
| 2430 | |
| 2431 | def redirect(url, code=None): |