Package io.netty.handler.codec.http
Class InvalidChunkTerminationException
- 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.CorruptedFrameException
-
- io.netty.handler.codec.http.InvalidChunkTerminationException
-
- All Implemented Interfaces:
java.io.Serializable
public final class InvalidChunkTerminationException extends CorruptedFrameException
Thrown when HTTP chunks could not be parsed, typically due to incorrect use of CR LF delimiters.RFC 9112 specifies that chunk bodies must be terminated in a CR LF pair, and that the delimiter must follow the given chunk-size number of octets in chunk-data.
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description InvalidChunkTerminationException()InvalidChunkTerminationException(java.lang.String message)InvalidChunkTerminationException(java.lang.String message, java.lang.Throwable cause)InvalidChunkTerminationException(java.lang.Throwable cause)
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
InvalidChunkTerminationException
public InvalidChunkTerminationException()
-
InvalidChunkTerminationException
public InvalidChunkTerminationException(java.lang.String message, java.lang.Throwable cause)
-
InvalidChunkTerminationException
public InvalidChunkTerminationException(java.lang.String message)
-
InvalidChunkTerminationException
public InvalidChunkTerminationException(java.lang.Throwable cause)
-
-