Exceptions¶
HTTPError
¶
Bases: Exception
The exception to end the request handling and return an JSON error response.
Examples:
from apiflask import APIFlask, HTTPError
from markupsafe import escape
app = APIFlask(__name__)
@app.get('/<name>')
def hello(name):
if name == 'Foo':
raise HTTPError(404, 'This man is missing.')
return f'Hello, escape{name}'!
Source code in apiflask/exceptions.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
|
__init__(status_code=None, message=None, detail=None, headers=None, extra_data=None)
¶
Initialize the error response.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
status_code |
int | None
|
The status code of the error (4XX and 5xx), defaults to 500. |
None
|
message |
str | None
|
The simple description of the error. If not provided, the reason phrase of the status code will be used. |
None
|
detail |
Any | None
|
The detailed information of the error, you can use it to provide the addition information such as custom error code, documentation URL, etc. |
None
|
headers |
ResponseHeaderType | None
|
A dict of headers used in the error response. |
None
|
extra_data |
Mapping[str, Any] | None
|
A dict of additional fields (custom error information) that will added to the error response body. |
None
|
Version changed: 0.9.0
- Set
detail
andheaders
to empty dict if not set.
Version changed: 0.10.0
- Add
extra_data
parameter to accept additional error information.
Version changed: 0.11.0
- Change
status_code
from position argument to keyword argument, defaults to 500. Add class attributes with default values to support error subclasses.
Source code in apiflask/exceptions.py
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
|
abort(status_code, message=None, detail=None, headers=None, extra_data=None)
¶
A function to raise HTTPError exception.
Similar to Flask's abort
, but returns a JSON response.
Examples:
from apiflask import APIFlask, abort
from markupsafe import escape
app = APIFlask(__name__)
@app.get('/<name>')
def hello(name):
if name == 'Foo':
abort(404, 'This man is missing.')
# or just `abort(404)`
return f'Hello, escape{name}'!
P.S. When app.json_errors
is True
(default), Flask's flask.abort
will also
return JSON error response.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
status_code |
int
|
The status code of the error (4XX and 5xx). |
required |
message |
str | None
|
The simple description of the error. If not provided, the reason phrase of the status code will be used. |
None
|
detail |
Any | None
|
The detailed information of the error, you can use it to provide the addition information such as custom error code, documentation URL, etc. |
None
|
headers |
ResponseHeaderType | None
|
A dict of headers used in the error response. |
None
|
extra_data |
dict | None
|
A dict of additional fields (custom error information) that will added to the error response body. |
None
|
Version changed: 0.4.0
- Rename the function name from
abort_json
toabort
.
Version changed: 0.10.0
- Add new parameter
extra_data
.
Source code in apiflask/exceptions.py
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
|