XMLConfigurationExceptionpublic class XMLConfigurationException extends XNIException An XNI parser configuration exception. This exception class extends
XNIException in order to differentiate between general
parsing errors and configuration errors. |
Fields Summary |
---|
public static final short | NOT_RECOGNIZEDException type: identifier not recognized. | public static final short | NOT_SUPPORTEDException type: identifier not supported. | protected short | fTypeException type. | protected String | fIdentifierIdentifier. |
Constructors Summary |
---|
public XMLConfigurationException(short type, String identifier)Constructs a configuration exception with the specified type
and feature/property identifier.
//
// Constructors
//
super(identifier);
fType = type;
fIdentifier = identifier;
| public XMLConfigurationException(short type, String identifier, String message)Constructs a configuration exception with the specified type,
feature/property identifier, and error message
super(message);
fType = type;
fIdentifier = identifier;
|
Methods Summary |
---|
public java.lang.String | getIdentifier()Returns the feature or property identifier.
return fIdentifier;
| public short | getType()Returns the exception type.
return fType;
|
|