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

Class NotFound

src/werkzeug/exceptions.py:351–361  ·  view source on GitHub ↗

*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 """*404* `Not Found`
353
354 Raise if a resource does not exist and never existed.
355 """
356
357 code = 404
358 description = (
359 "The requested URL was not found on the server. If you entered"
360 " 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

Used in the wild real call sites across dependent graphs

searching dependent graphs…