public class EPPComponentNotFoundException extends EPPDecodeException
kind
of component
could not be found. The constants provided defined the possible
values for the kind
attribute.Modifier and Type | Field and Description |
---|---|
static short |
COMMAND
Command component not found
|
static short |
EXTENSION
Extension component (command/response extension or protocol extension)
not found.
|
static short |
RESPONSE
Response component not found
|
MISSINGPARAMETER, SAX_EXCEPTION, VALUE_MISSINGPARAMETER, VALUE_SAX_EXCEPTION, VALUE_UNDEFINED
Constructor and Description |
---|
EPPComponentNotFoundException(short aKind,
EPPCodecException aExcep)
Copy Constructor for EPPComponentNotFoundException that takes the base
EPPCodecException.
|
EPPComponentNotFoundException(short aKind,
java.lang.String aInfo)
Constructor for EPPComponentNotFoundException that takes an info string.
|
EPPComponentNotFoundException(short aKind,
java.lang.String aInfo,
EPPCodecException aExcep)
Constructor for EPPComponentNotFoundException that takes an info string and the
base EPPCodecException.
|
Modifier and Type | Method and Description |
---|---|
short |
getKind()
Kind of component not found.
|
void |
setKind(short aKind)
Kind of component not found.
|
equals, getValue
public static final short COMMAND
public static final short RESPONSE
public static final short EXTENSION
public EPPComponentNotFoundException(short aKind, java.lang.String aInfo)
aKind
- Kind of component not found using one of the EPPComponentNotFoundException
constants.aInfo
- Text description of the exception.public EPPComponentNotFoundException(short aKind, java.lang.String aInfo, EPPCodecException aExcep)
aKind
- Kind of component not found using one of the EPPComponentNotFoundException
constants.aInfo
- Text description of the exception.aExcep
- the EPPCodecException letting us know which specific error
has occured to be propagated to the Assembler.public EPPComponentNotFoundException(short aKind, EPPCodecException aExcep)
aKind
- Kind of component not found using one of the EPPComponentNotFoundException
constants.aExcep
- the EPPCodecException letting us know which specific error
has occured to be propagated to the Assembler.public short getKind()
EPPComponentNotFoundException
constantspublic void setKind(short aKind)
aKind
- Kind of component not found using one of the EPPComponentNotFoundException
constants.