Package org.apache.mina.filter.codec
Class ProtocolCodecException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.mina.filter.codec.ProtocolCodecException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ProtocolDecoderException
,ProtocolEncoderException
public class ProtocolCodecException extends java.lang.Exception
An exception that is thrown whenProtocolEncoder
orProtocolDecoder
cannot understand or failed to validate data to process.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProtocolCodecException()
Constructs a new instance.ProtocolCodecException(java.lang.String message)
Constructs a new instance with the specified message.ProtocolCodecException(java.lang.String message, java.lang.Throwable cause)
Constructs a new instance with the specified message and the specified cause.ProtocolCodecException(java.lang.Throwable cause)
Constructs a new instance with the specified cause.
-
-
-
Constructor Detail
-
ProtocolCodecException
public ProtocolCodecException()
Constructs a new instance.
-
ProtocolCodecException
public ProtocolCodecException(java.lang.String message)
Constructs a new instance with the specified message.
-
ProtocolCodecException
public ProtocolCodecException(java.lang.Throwable cause)
Constructs a new instance with the specified cause.
-
ProtocolCodecException
public ProtocolCodecException(java.lang.String message, java.lang.Throwable cause)
Constructs a new instance with the specified message and the specified cause.
-
-