Home » Xerces-J-src.2.9.1 » org.apache.xerces » xni » parser » [javadoc | source]
org.apache.xerces.xni.parser
public class: XMLConfigurationException [javadoc | source]
java.lang.Object
   java.lang.Throwable
      java.lang.Exception
         java.lang.RuntimeException
            org.apache.xerces.xni.XNIException
               org.apache.xerces.xni.parser.XMLConfigurationException

All Implemented Interfaces:
    Serializable

An XNI parser configuration exception. This exception class extends XNIException in order to differentiate between general parsing errors and configuration errors.
Field Summary
static final  long serialVersionUID    Serialization version. 
public static final  short NOT_RECOGNIZED    Exception type: identifier not recognized. 
public static final  short NOT_SUPPORTED    Exception type: identifier not supported. 
protected  short fType    Exception type. 
protected  String fIdentifier    Identifier. 
Fields inherited from org.apache.xerces.xni.XNIException:
serialVersionUID
Constructor:
 public XMLConfigurationException(short type,
    String identifier) 
    Constructs a configuration exception with the specified type and feature/property identifier.
 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.
    Also see:
    NOT_RECOGNIZED
    NOT_SUPPORTED
Method from org.apache.xerces.xni.parser.XMLConfigurationException Summary:
getIdentifier,   getType
Methods from org.apache.xerces.xni.XNIException:
getException
Methods from java.lang.Throwable:
fillInStackTrace,   getCause,   getLocalizedMessage,   getMessage,   getStackTrace,   initCause,   printStackTrace,   printStackTrace,   printStackTrace,   setStackTrace,   toString
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.xerces.xni.parser.XMLConfigurationException Detail:
 public String getIdentifier() 
    Returns the feature or property identifier.
 public short getType() 
    Returns the exception type.