MCPcopy
hub / github.com/pallets/werkzeug / NotFound

Class NotFound

src/werkzeug/exceptions.py:351–361  ·  src/werkzeug/exceptions.py::NotFound

*404* `Not Found` Raise if a resource does not exist and never existed.

Source from the content-addressed store, hash-verified

349
350
351class 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
364class MethodNotAllowed(HTTPException):

Callers 14

test_dispatchFunction · 0.90
__call__Method · 0.90
processMethod · 0.90
displayFunction · 0.90
linkFunction · 0.90
listFunction · 0.90
on_follow_short_linkMethod · 0.90
on_short_link_detailsMethod · 0.90
displayFunction · 0.90
linkFunction · 0.90
listFunction · 0.90
send_from_directoryFunction · 0.85

Calls

no outgoing calls

Tested by 1

test_dispatchFunction · 0.72