javax.xml.transform
Class TransformerFactoryConfigurationError

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Error
          extended by javax.xml.transform.TransformerFactoryConfigurationError
All Implemented Interfaces:
Serializable

public class TransformerFactoryConfigurationError
extends Error

An error occurred during configuration of the transformer factory.

See Also:
Serialized Form

Constructor Summary
TransformerFactoryConfigurationError()
          Constructor with no detail message.
TransformerFactoryConfigurationError(Exception e)
          Constructor with an underlying cause.
TransformerFactoryConfigurationError(Exception e, String msg)
          Constructor with an underlying cause and detail message.
TransformerFactoryConfigurationError(String msg)
          Constructor with a detail message.
 
Method Summary
 Exception getException()
          Returns the underlying cause.
 String getMessage()
          Returns the detail message.
 
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

TransformerFactoryConfigurationError

public TransformerFactoryConfigurationError()
Constructor with no detail message.


TransformerFactoryConfigurationError

public TransformerFactoryConfigurationError(String msg)
Constructor with a detail message.


TransformerFactoryConfigurationError

public TransformerFactoryConfigurationError(Exception e)
Constructor with an underlying cause.


TransformerFactoryConfigurationError

public TransformerFactoryConfigurationError(Exception e,
                                            String msg)
Constructor with an underlying cause and detail message.

Method Detail

getMessage

public String getMessage()
Returns the detail message.

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

getException

public Exception getException()
Returns the underlying cause.