Class EPPPollQueueException

  • All Implemented Interfaces:
    java.io.Serializable

    public class EPPPollQueueException
    extends EPPException
    Represents a general EPP Poll Queue Exception.

    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      EPPPollQueueException​(int aType, java.lang.String info)
      Constructor for EPPPollQueueException that takes a type and an info string.
      EPPPollQueueException​(java.lang.String info)
      Constructor for EPPPollQueueException that takes an info string.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getType()
      Function to get the exception type.
      • 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
    • Field Detail

      • TYPE_DEFAULT

        public static final int TYPE_DEFAULT
        Default type of poll queue exception
        See Also:
        Constant Field Values
      • TYPE_QUEUE_EMPTY

        public static final int TYPE_QUEUE_EMPTY
        Poll queue is empty
        See Also:
        Constant Field Values
      • TYPE_MSGID_NOT_FOUND

        public static final int TYPE_MSGID_NOT_FOUND
        Message id was not found
        See Also:
        Constant Field Values
    • Constructor Detail

      • EPPPollQueueException

        public EPPPollQueueException​(java.lang.String info)
        Constructor for EPPPollQueueException that takes an info string.
        Parameters:
        info - Text description of the exception.
      • EPPPollQueueException

        public EPPPollQueueException​(int aType,
                                     java.lang.String info)
        Constructor for EPPPollQueueException that takes a type and an info string.
        Parameters:
        aType - Type of the exception.
        info - Text description of the exception.
    • Method Detail

      • getType

        public int getType()
        Function to get the exception type.
        Returns:
        DOCUMENT ME!