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