org.apache.xerces.xni.parser
Class XMLConfigurationException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.apache.xerces.xni.XNIException
                  extended by org.apache.xerces.xni.parser.XMLConfigurationException
All Implemented Interfaces:
java.io.Serializable

public 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.

Version:
$Id: XMLConfigurationException.java 447244 2006-09-18 05:20:40Z mrglavas $
Author:
Andy Clark, IBM
See Also:
Serialized Form

Field Summary
static short NOT_RECOGNIZED
          Exception type: identifier not recognized.
static short NOT_SUPPORTED
          Exception type: identifier not supported.
 
Constructor Summary
XMLConfigurationException(short type, java.lang.String identifier)
          Constructs a configuration exception with the specified type and feature/property identifier.
XMLConfigurationException(short type, java.lang.String identifier, java.lang.String message)
          Constructs a configuration exception with the specified type, feature/property identifier, and error message
 
Method Summary
 java.lang.String getIdentifier()
          Returns the feature or property identifier.
 short getType()
          Returns the exception type.
 
Methods inherited from class org.apache.xerces.xni.XNIException
getException
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

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
Constructor Detail

XMLConfigurationException

public XMLConfigurationException(short type,
                                 java.lang.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,
                                 java.lang.String identifier,
                                 java.lang.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 java.lang.String getIdentifier()
Returns the feature or property identifier.