javax.xml.parsers
Class FactoryConfigurationError

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Error
          extended by javax.xml.parsers.FactoryConfigurationError
All Implemented Interfaces:
Serializable

public class FactoryConfigurationError
extends Error

An error occurred during configuration of the parser factory.

See Also:
Serialized Form

Constructor Summary
FactoryConfigurationError()
          Constructor with no detail message.
FactoryConfigurationError(Exception e)
          Constructor with the specified underlying cause.
FactoryConfigurationError(Exception e, String msg)
          Constructor with the specified underlying cause and detail message.
FactoryConfigurationError(String msg)
          Constructor with the specified detail message.
 
Method Summary
 Exception getException()
          Returns the underlying cause of this exception, if any.
 String getMessage()
          Returns the message for this error, if any.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FactoryConfigurationError

public FactoryConfigurationError()
Constructor with no detail message.


FactoryConfigurationError

public FactoryConfigurationError(String msg)
Constructor with the specified detail message.

Parameters:
msg - the detail message

FactoryConfigurationError

public FactoryConfigurationError(Exception e)
Constructor with the specified underlying cause.

Parameters:
e - the underlying cause of this exception

FactoryConfigurationError

public FactoryConfigurationError(Exception e,
                                 String msg)
Constructor with the specified underlying cause and detail message.

Parameters:
e - the underlying cause of this exception
msg - the detail message
Method Detail

getMessage

public String getMessage()
Returns the message for this error, if any.

Overrides:
getMessage in class Throwable
Returns:
the error message associated with this Throwable, may be null

getException

public Exception getException()
Returns the underlying cause of this exception, if any.