Package com.verisign.epp.framework
Class EPPPollQueueException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.verisign.epp.exception.EPPException
-
- com.verisign.epp.framework.EPPPollQueueException
-
- All Implemented Interfaces:
java.io.Serializable
public class EPPPollQueueException extends EPPException
Represents a general EPP Poll Queue Exception.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static intTYPE_DEFAULTDefault type of poll queue exceptionstatic intTYPE_MSGID_NOT_FOUNDMessage id was not foundstatic intTYPE_QUEUE_EMPTYPoll queue is empty
-
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 intgetType()Function to get the exception type.
-
-
-
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.
-
-