Package com.verisign.epp.codec.gen
Class EPPComponentNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.verisign.epp.exception.EPPException
com.verisign.epp.codec.gen.EPPCodecException
com.verisign.epp.codec.gen.EPPDecodeException
com.verisign.epp.codec.gen.EPPComponentNotFoundException
- All Implemented Interfaces:
Serializable
Exception used to identify when a component can not be found
in one of the factories during a decode operation. The exception
includes a kind attribute that defines which
kind of component
could not be found. The constants provided defined the possible
values for the kind attribute.- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final shortCommand component not foundstatic final shortExtension component (command/response extension or protocol extension) not found.static final shortResponse component not foundFields inherited from class com.verisign.epp.codec.gen.EPPCodecException
MISSINGPARAMETER, SAX_EXCEPTION, VALUE_MISSINGPARAMETER, VALUE_SAX_EXCEPTION, VALUE_UNDEFINED -
Constructor Summary
ConstructorsConstructorDescriptionEPPComponentNotFoundException(short aKind, EPPCodecException aExcep) Copy Constructor for EPPComponentNotFoundException that takes the base EPPCodecException.EPPComponentNotFoundException(short aKind, String aInfo) Constructor for EPPComponentNotFoundException that takes an info string.EPPComponentNotFoundException(short aKind, String aInfo, EPPCodecException aExcep) Constructor for EPPComponentNotFoundException that takes an info string and the base EPPCodecException. -
Method Summary
Methods inherited from class com.verisign.epp.codec.gen.EPPCodecException
equals, getValueMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
COMMAND
public static final short COMMANDCommand component not found- See Also:
-
RESPONSE
public static final short RESPONSEResponse component not found- See Also:
-
EXTENSION
public static final short EXTENSIONExtension component (command/response extension or protocol extension) not found.- See Also:
-
-
Constructor Details
-
EPPComponentNotFoundException
Constructor for EPPComponentNotFoundException that takes an info string.- Parameters:
aKind- Kind of component not found using one of theEPPComponentNotFoundExceptionconstants.aInfo- Text description of the exception.
-
EPPComponentNotFoundException
Constructor for EPPComponentNotFoundException that takes an info string and the base EPPCodecException.- Parameters:
aKind- Kind of component not found using one of theEPPComponentNotFoundExceptionconstants.aInfo- Text description of the exception.aExcep- the EPPCodecException letting us know which specific error has occured to be propagated to the Assembler.
-
EPPComponentNotFoundException
Copy Constructor for EPPComponentNotFoundException that takes the base EPPCodecException.- Parameters:
aKind- Kind of component not found using one of theEPPComponentNotFoundExceptionconstants.aExcep- the EPPCodecException letting us know which specific error has occured to be propagated to the Assembler.
-
-
Method Details
-
getKind
public short getKind()Kind of component not found.- Returns:
- One of the
EPPComponentNotFoundExceptionconstants
-
setKind
public void setKind(short aKind) Kind of component not found.- Parameters:
aKind- Kind of component not found using one of theEPPComponentNotFoundExceptionconstants.
-