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:
java.io.Serializable
public class EPPAssemblerException extends EPPException
The EPPAssemblerException defines a set of possible exceptions that can be thrown from anEPPAssembler
. Static instances of EPPAssemblerExceptions are defined here and should be used by clients of this class. As a general guideline, there is a uniqueEPPAssemblerException
associated with each concreteEPPAssembler
class.- See Also:
EPPException
,EPPAssembler
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static EPPAssemblerException
CLOSECON
The typesafe constant CLOSECON defines the instance of EPPAssemblerException that should be thrown for Intrupted Read/Write (timed out).static EPPAssemblerException
COMMANDNOTFOUND
The typesafe constant COMMANDNOTFOUND defines the instance of EPPAssemblerException that should be thrown when a command component can not be found.static EPPAssemblerException
EXTENSIONNOTFOUND
The typesafe constant EXTENSIONOTFOUND defines the instance of EPPAssemblerException that should be thrown when a extension component can not be found.static EPPAssemblerException
FATAL
The typesafe constant FATAL defines the instance of EPPAssemblerException that should be thrown for fatal client session errors.static EPPAssemblerException
INTRUPTEDIO
The typesafe constant INTRUPTEDIO defines the instance of EPPAssemblerException that should be thrown for Intrupted Read/Write (timed out).static EPPAssemblerException
MISSINGPARAMETER
The typesafe constant MISSINGPARAMETER defines the instance of EPPAssemblerException that should be thrown for missing input parameters.static EPPAssemblerException
RESPONSENOTFOUND
The typesafe constant RESPONSENOTFOUND defines the instance of EPPAssemblerException that should be thrown when a response component can not be found.static EPPAssemblerException
XML
The typesafe constant XML defines the instance of EPPAssemblerException that should be thrown from an XMLAssembler
-
Constructor Summary
Constructors Constructor Description EPPAssemblerException(java.lang.String aInfo, EPPAssemblerException ex)
Constructs a newEPPAssemblerException
instanceEPPAssemblerException(java.lang.String aInfo, EPPAssemblerException ex, boolean isFatal)
Constructs a newEPPAssemblerException
instance with a fatal indicator parameter.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
Returns true if twoEPPAssemblerException
instances are equal.boolean
isFatal()
Is the exception fatal for the client session?
-
-
-
Field Detail
-
XML
public static final EPPAssemblerException XML
The typesafe constant XML defines the instance of EPPAssemblerException that should be thrown from an XMLAssembler
-
FATAL
public static final EPPAssemblerException FATAL
The typesafe constant FATAL defines the instance of EPPAssemblerException that should be thrown for fatal client session errors.
-
INTRUPTEDIO
public static final EPPAssemblerException INTRUPTEDIO
The typesafe constant INTRUPTEDIO defines the instance of EPPAssemblerException that should be thrown for Intrupted Read/Write (timed out).
-
CLOSECON
public static final EPPAssemblerException CLOSECON
The typesafe constant CLOSECON defines the instance of EPPAssemblerException that should be thrown for Intrupted Read/Write (timed out).
-
MISSINGPARAMETER
public static final EPPAssemblerException MISSINGPARAMETER
The typesafe constant MISSINGPARAMETER defines the instance of EPPAssemblerException that should be thrown for missing input parameters.
-
COMMANDNOTFOUND
public static final EPPAssemblerException COMMANDNOTFOUND
The typesafe constant COMMANDNOTFOUND defines the instance of EPPAssemblerException that should be thrown when a command component can not be found.
-
RESPONSENOTFOUND
public static final EPPAssemblerException RESPONSENOTFOUND
The typesafe constant RESPONSENOTFOUND defines the instance of EPPAssemblerException that should be thrown when a response component can not be found.
-
EXTENSIONNOTFOUND
public static final EPPAssemblerException EXTENSIONNOTFOUND
The typesafe constant EXTENSIONOTFOUND defines the instance of EPPAssemblerException that should be thrown when a extension component can not be found.
-
-
Constructor Detail
-
EPPAssemblerException
public EPPAssemblerException(java.lang.String aInfo, EPPAssemblerException ex)
Constructs a newEPPAssemblerException
instance- Parameters:
aInfo
- Information that can be included with theEPPAssemblerException
ex
- An instance of anEPPAssemblerException
. This should be one of the static instaces defined inEPPAssemblerException
.
-
EPPAssemblerException
public EPPAssemblerException(java.lang.String aInfo, EPPAssemblerException ex, boolean isFatal)
Constructs a newEPPAssemblerException
instance with a fatal indicator parameter.- Parameters:
aInfo
- Information that can be included with theEPPAssemblerException
ex
- An instance of anEPPAssemblerException
. This should be one of the static instaces defined inEPPAssemblerException
.isFatal
- Is the exception fatal for the client session?
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object obj)
Returns true if twoEPPAssemblerException
instances are equal.- Overrides:
equals
in classjava.lang.Object
- Parameters:
obj
- DOCUMENT ME!- Returns:
- boolean True if the two
EPPAssemblerException
have the same value.
-
isFatal
public boolean isFatal()
Is the exception fatal for the client session?- Returns:
true
if is fatal;false
otherwise.
-
-