Class UriTooLong

All Implemented Interfaces:
Serializable, HttpMessage, HttpResponse

@Response @StatusCode(414) @Schema(description="URI Too Long") public class UriTooLong extends BasicHttpException
Exception representing an HTTP 414 (URI Too Long).

The URI provided was too long for the server to process.
Often the result of too much data being encoded as a query-string of a GET request, in which case it should be converted to a POST request.

See Also: