Package io.netty.handler.codec
Class PrematureChannelClosureException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- io.netty.handler.codec.CodecException
-
- io.netty.handler.codec.PrematureChannelClosureException
-
- All Implemented Interfaces:
java.io.Serializable
public class PrematureChannelClosureException extends CodecException
ACodecException
which is thrown when aChannel
is closed unexpectedly before the codec finishes handling the current message, such as missing response while waiting for a request.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description PrematureChannelClosureException()
Creates a new instance.PrematureChannelClosureException(java.lang.String message)
Creates a new instance.PrematureChannelClosureException(java.lang.String message, java.lang.Throwable cause)
Creates a new instance.PrematureChannelClosureException(java.lang.Throwable cause)
Creates a new instance.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
PrematureChannelClosureException
public PrematureChannelClosureException()
Creates a new instance.
-
PrematureChannelClosureException
public PrematureChannelClosureException(java.lang.String message, java.lang.Throwable cause)
Creates a new instance.
-
PrematureChannelClosureException
public PrematureChannelClosureException(java.lang.String message)
Creates a new instance.
-
PrematureChannelClosureException
public PrematureChannelClosureException(java.lang.Throwable cause)
Creates a new instance.
-
-