Package com.verisign.epp.framework
Class EPPAssemblerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.verisign.epp.exception.EPPException
com.verisign.epp.framework.EPPAssemblerException
- All Implemented Interfaces:
Serializable
The EPPAssemblerException defines a set of possible exceptions that can be
thrown from an
EPPAssembler. Static instances of
EPPAssemblerExceptions are defined here and should be used by clients of
this class. As a general guideline, there is a unique
EPPAssemblerException associated with each concrete
EPPAssembler class. - See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final EPPAssemblerExceptionThe typesafe constant CLOSECON defines the instance of EPPAssemblerException that should be thrown for Intrupted Read/Write (timed out).static final EPPAssemblerExceptionThe typesafe constant COMMANDNOTFOUND defines the instance of EPPAssemblerException that should be thrown when a command component can not be found.static final EPPAssemblerExceptionThe typesafe constant EXTENSIONOTFOUND defines the instance of EPPAssemblerException that should be thrown when a extension component can not be found.static final EPPAssemblerExceptionThe typesafe constant FATAL defines the instance of EPPAssemblerException that should be thrown for fatal client session errors.static final EPPAssemblerExceptionThe typesafe constant INTRUPTEDIO defines the instance of EPPAssemblerException that should be thrown for Intrupted Read/Write (timed out).static final EPPAssemblerExceptionThe typesafe constant MISSINGPARAMETER defines the instance of EPPAssemblerException that should be thrown for missing input parameters.static final EPPAssemblerExceptionThe typesafe constant RESPONSENOTFOUND defines the instance of EPPAssemblerException that should be thrown when a response component can not be found.static final EPPAssemblerExceptionThe typesafe constant XML defines the instance of EPPAssemblerException that should be thrown from an XMLAssembler -
Constructor Summary
ConstructorsConstructorDescriptionEPPAssemblerException(String aInfo, EPPAssemblerException ex) Constructs a newEPPAssemblerExceptioninstanceEPPAssemblerException(String aInfo, EPPAssemblerException ex, boolean isFatal) Constructs a newEPPAssemblerExceptioninstance with a fatal indicator parameter. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
XML
The typesafe constant XML defines the instance of EPPAssemblerException that should be thrown from an XMLAssembler -
FATAL
The typesafe constant FATAL defines the instance of EPPAssemblerException that should be thrown for fatal client session errors. -
INTRUPTEDIO
The typesafe constant INTRUPTEDIO defines the instance of EPPAssemblerException that should be thrown for Intrupted Read/Write (timed out). -
CLOSECON
The typesafe constant CLOSECON defines the instance of EPPAssemblerException that should be thrown for Intrupted Read/Write (timed out). -
MISSINGPARAMETER
The typesafe constant MISSINGPARAMETER defines the instance of EPPAssemblerException that should be thrown for missing input parameters. -
COMMANDNOTFOUND
The typesafe constant COMMANDNOTFOUND defines the instance of EPPAssemblerException that should be thrown when a command component can not be found. -
RESPONSENOTFOUND
The typesafe constant RESPONSENOTFOUND defines the instance of EPPAssemblerException that should be thrown when a response component can not be found. -
EXTENSIONNOTFOUND
The typesafe constant EXTENSIONOTFOUND defines the instance of EPPAssemblerException that should be thrown when a extension component can not be found.
-
-
Constructor Details
-
EPPAssemblerException
Constructs a newEPPAssemblerExceptioninstance- Parameters:
aInfo- Information that can be included with theEPPAssemblerExceptionex- An instance of anEPPAssemblerException. This should be one of the static instaces defined inEPPAssemblerException.
-
EPPAssemblerException
Constructs a newEPPAssemblerExceptioninstance with a fatal indicator parameter.- Parameters:
aInfo- Information that can be included with theEPPAssemblerExceptionex- An instance of anEPPAssemblerException. This should be one of the static instaces defined inEPPAssemblerException.isFatal- Is the exception fatal for the client session?
-
-
Method Details
-
equals
Returns true if twoEPPAssemblerExceptioninstances are equal. -
isFatal
public boolean isFatal()Is the exception fatal for the client session?- Returns:
trueif is fatal;falseotherwise.
-