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
-
-
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.
-
-
-
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.
-
-