API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.xml.transform. TransformerConfigurationException View Source
Author(s)
Since
Version
Serial
Hierarchy
 Object
      Throwable
          Exception
              TransformerException
                  TransformerConfigurationException
Implements
Subclasses
Description
public exception TransformerConfigurationException
Indicates a serious configuration error.
See also:   
Constructors
public TransformerConfigurationException ()
Create a new TransformerConfigurationException with no detail mesage.
public TransformerConfigurationException (String msg)
  Create a new TransformerConfigurationException with the String specified as an error message.
public TransformerConfigurationException (String message, SourceLocator locator)
  Create a new TransformerConfigurationException from a message and a Locator.
public TransformerConfigurationException (String message, SourceLocator locator, Throwable e)
  Wrap an existing exception in a TransformerConfigurationException.
public TransformerConfigurationException (String msg, Throwable e)
  Create a new TransformerConfigurationException with the given Exception base cause and detail message.
public TransformerConfigurationException (Throwable e)
  Create a new TransformerConfigurationException with a given Exception base cause of the error.
Methods
Hide/Show inherited methods
publicsynchronizednative Throwable fillInStackTrace () [Inherited From Throwable]
  Fills in the execution stack trace.
public Throwable getCause () [Inherited From TransformerException]
  Returns the cause of this throwable or null if the cause is nonexistent or unknown.
public Throwable getException () [Inherited From TransformerException]
  This method retrieves an exception that this exception wraps.
public String getLocalizedMessage () [Inherited From Throwable]
  Creates a localized description of this throwable.
public String getLocationAsString () [Inherited From TransformerException]
  Get the location information as a string.
public SourceLocator getLocator () [Inherited From TransformerException]
  Method getLocator retrieves an instance of a SourceLocator object that specifies where an error occured.
public String getMessage () [Inherited From Throwable]
  Returns the detail message string of this throwable.
public String getMessageAndLocation () [Inherited From TransformerException]
  Get the error message with location information appended.
public StackTraceElement getStackTrace () [Inherited From Throwable]
  Provides programmatic access to the stack trace information printed by Throwable.printStackTrace().
publicsynchronized Throwable initCause (Throwable cause) [Inherited From TransformerException]
  Initializes the cause of this throwable to the specified value.
public void printStackTrace () [Inherited From TransformerException]
  Print the the trace of methods from where the error originated.
public void printStackTrace (PrintStream s) [Inherited From TransformerException]
  Print the the trace of methods from where the error originated.
public void printStackTrace (PrintWriter s) [Inherited From TransformerException]
  Print the the trace of methods from where the error originated.
public void setLocator (SourceLocator location) [Inherited From TransformerException]
  Method setLocator sets an instance of a SourceLocator object that specifies where an error occured.
public void setStackTrace (StackTraceElement stackTrace) [Inherited From Throwable]
  Sets the stack trace elements that will be returned by Throwable.getStackTrace() and printed by Throwable.printStackTrace() and related methods.
public String toString () [Inherited From Throwable]
  Returns a short description of this throwable.
Fields
Hide/Show inherited fields
pack-private Throwable containedException [Inherited From TransformerException]
  Field containedException specifies a wrapped exception.
pack-private SourceLocator locator [Inherited From TransformerException]
Field locator specifies where the error occured
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar