*404* `Not Found` Raise if a resource does not exist and never existed.
| 349 | |
| 350 | |
| 351 | class NotFound(HTTPException): |
| 352 | class="st">"""*404* `Not Found` |
| 353 | |
| 354 | Raise if a resource does not exist and never existed. |
| 355 | class="st">""" |
| 356 | |
| 357 | code = 404 |
| 358 | description = ( |
| 359 | class="st">"The requested URL was not found on the server. If you entered" |
| 360 | class="st">" the URL manually please check your spelling and try again." |
| 361 | ) |
| 362 | |
| 363 | |
| 364 | class MethodNotAllowed(HTTPException): |
no outgoing calls