Uses of Class
io.netty5.handler.codec.DecoderException
-
Packages that use DecoderException Package Description io.netty5.handler.codec Extensible decoder and its common implementations which deal with the packet fragmentation and reassembly issue found in a stream-based transport such as TCP/IP.io.netty5.handler.codec.compression io.netty5.handler.codec.http Encoder, decoder and their related message types for HTTP.io.netty5.handler.codec.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames. -
-
Uses of DecoderException in io.netty5.handler.codec
Subclasses of DecoderException in io.netty5.handler.codec Modifier and Type Class Description class
CorruptedFrameException
AnDecoderException
which is thrown when the received frame data could not be decoded by an inbound handler.class
TooLongFrameException
AnDecoderException
which is thrown when the length of the frame decoded is greater than the allowed maximum. -
Uses of DecoderException in io.netty5.handler.codec.compression
Subclasses of DecoderException in io.netty5.handler.codec.compression Modifier and Type Class Description class
DecompressionException
ADecoderException
that is raised when decompression failed. -
Uses of DecoderException in io.netty5.handler.codec.http
Subclasses of DecoderException in io.netty5.handler.codec.http Modifier and Type Class Description class
TooLongHttpContentException
AnTooLongFrameException
which is thrown when the length of the content decoded is greater than the allowed maximum.class
TooLongHttpHeaderException
AnTooLongFrameException
which is thrown when the length of the header decoded is greater than the allowed maximum.class
TooLongHttpLineException
AnTooLongFrameException
which is thrown when the length of the line decoded is greater than the allowed maximum. -
Uses of DecoderException in io.netty5.handler.codec.http.websocketx
Subclasses of DecoderException in io.netty5.handler.codec.http.websocketx Modifier and Type Class Description class
CorruptedWebSocketFrameException
AnDecoderException
which is thrown when the receivedWebSocketFrame
data could not be decoded by an inbound handler.
-