Class ProtocolEncoderException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ProtocolEncoderException
    extends ProtocolCodecException
    An exception that is thrown when ProtocolEncoder 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.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • 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.