Class XMLConfigurationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.smooks.engine.delivery.sax.ng.org.apache.xerces.xni.XNIException
-
- org.smooks.engine.delivery.sax.ng.org.apache.xerces.xni.parser.XMLConfigurationException
-
- All Implemented Interfaces:
Serializable
public class XMLConfigurationException extends XNIException
An XNI parser configuration exception. This exception class extendsXNIException
in order to differentiate between general parsing errors and configuration errors.- Version:
- $Id$
- Author:
- Andy Clark, IBM
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected String
fIdentifier
Identifier.protected short
fType
Exception type.static short
NOT_RECOGNIZED
Exception type: identifier not recognized.static short
NOT_SUPPORTED
Exception type: identifier not supported.
-
Constructor Summary
Constructors Constructor Description XMLConfigurationException(short type, String identifier)
Constructs a configuration exception with the specified type and feature/property identifier.XMLConfigurationException(short type, String identifier, String message)
Constructs a configuration exception with the specified type, feature/property identifier, and error message
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getIdentifier()
Returns the feature or property identifier.short
getType()
Returns the exception type.-
Methods inherited from class org.smooks.engine.delivery.sax.ng.org.apache.xerces.xni.XNIException
getCause, getException, initCause
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
NOT_RECOGNIZED
public static final short NOT_RECOGNIZED
Exception type: identifier not recognized.- See Also:
- Constant Field Values
-
NOT_SUPPORTED
public static final short NOT_SUPPORTED
Exception type: identifier not supported.- See Also:
- Constant Field Values
-
fType
protected short fType
Exception type.
-
fIdentifier
protected String fIdentifier
Identifier.
-
-
Constructor Detail
-
XMLConfigurationException
public XMLConfigurationException(short type, String identifier)
Constructs a configuration exception with the specified type and feature/property identifier.- Parameters:
type
- The type of the exception.identifier
- The feature or property identifier.- See Also:
NOT_RECOGNIZED
,NOT_SUPPORTED
-
XMLConfigurationException
public XMLConfigurationException(short type, String identifier, String message)
Constructs a configuration exception with the specified type, feature/property identifier, and error message- Parameters:
type
- The type of the exception.identifier
- The feature or property identifier.message
- The error message.- See Also:
NOT_RECOGNIZED
,NOT_SUPPORTED
-
-
Method Detail
-
getType
public short getType()
Returns the exception type.- See Also:
NOT_RECOGNIZED
,NOT_SUPPORTED
-
getIdentifier
public String getIdentifier()
Returns the feature or property identifier.
-
-