*413* `Request Entity Too Large` The status code one should return if the data submitted exceeded a given limit.
| 485 | |
| 486 | |
| 487 | class 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 | |
| 498 | class RequestURITooLarge(HTTPException): |
no outgoing calls
no test coverage detected