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

Class RequestEntityTooLarge

src/werkzeug/exceptions.py:487–495  ·  view source on GitHub ↗

*413* `Request Entity Too Large` The status code one should return if the data submitted exceeded a given limit.

Source from the content-addressed store, hash-verified

485
486
487class RequestEntityTooLarge(HTTPException):
488 """*413* `Request Entity Too Large`
489
490 The status code one should return if the data submitted exceeded a given
491 limit.
492 """
493
494 code = 413
495 description = "The data value transmitted exceeds the capacity limit."
496
497
498class RequestURITooLarge(HTTPException):

Callers 6

get_input_streamFunction · 0.85
on_exhaustedMethod · 0.85
_parse_urlencodedMethod · 0.85
parseMethod · 0.85
receive_dataMethod · 0.85
next_eventMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected