Package io.netty.handler.codec.http
Class ContentLengthNotAllowedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- io.netty.handler.codec.CodecException
-
- io.netty.handler.codec.DecoderException
-
- io.netty.handler.codec.http.ContentLengthNotAllowedException
-
- All Implemented Interfaces:
Serializable
public final class ContentLengthNotAllowedException extends io.netty.handler.codec.DecoderExceptionThrown byHttpObjectDecoder.handleTransferEncodingChunkedWithContentLength(HttpMessage)by default.The HTTP/1.1 specification, RFC 9112, disallow senders from including both
Tranfer-Encodingand {@code Content-Length headers in the same message, and permits servers to reject such requests.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ContentLengthNotAllowedException(String message)Create a new instance with the given message.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ContentLengthNotAllowedException
public ContentLengthNotAllowedException(String message)
Create a new instance with the given message.- Parameters:
message- The exception message.
-
-