| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception javax.xml.transform.TransformerException
All known Subclasses: javax.xml.transform.TransformerConfigurationException,
TransformerException | public class TransformerException extends Exception (Code) | | This class specifies an exceptional condition that occured
during the transformation process.
|
containedException | Throwable containedException(Code) | | Field containedException specifies a wrapped exception. May be null.
|
TransformerException | public TransformerException(String message)(Code) | | Create a new TransformerException.
Parameters: message - The error or warning message. |
TransformerException | public TransformerException(Throwable e)(Code) | | Create a new TransformerException wrapping an existing exception.
Parameters: e - The exception to be wrapped. |
TransformerException | public TransformerException(String message, Throwable e)(Code) | | Wrap an existing exception in a TransformerException.
This is used for throwing processor exceptions before
the processing has started.
Parameters: message - The error or warning message, or null touse the message from the embedded exception. Parameters: e - Any exception |
TransformerException | public TransformerException(String message, SourceLocator locator)(Code) | | Create a new TransformerException from a message and a Locator.
This constructor is especially useful when an application is
creating its own exception from within a DocumentHandler
callback.
Parameters: message - The error or warning message. Parameters: locator - The locator object for the error or warning. |
TransformerException | public TransformerException(String message, SourceLocator locator, Throwable e)(Code) | | Wrap an existing exception in a TransformerException.
Parameters: message - The error or warning message, or null touse the message from the embedded exception. Parameters: locator - The locator object for the error or warning. Parameters: e - Any exception |
getCause | public Throwable getCause()(Code) | | Returns the cause of this throwable or null if the
cause is nonexistent or unknown. (The cause is the throwable that
caused this throwable to get thrown.)
|
getLocationAsString | public String getLocationAsString()(Code) | | Get the location information as a string.
A string with location info, or nullif there is no location information. |
getLocator | public SourceLocator getLocator()(Code) | | Method getLocator retrieves an instance of a SourceLocator
object that specifies where an error occured.
A SourceLocator object, or null if none was specified. |
getMessageAndLocation | public String getMessageAndLocation()(Code) | | Get the error message with location information
appended.
A String representing the error message withlocation information appended. |
printStackTrace | public void printStackTrace()(Code) | | Print the the trace of methods from where the error
originated. This will trace all nested exception
objects, as well as this object.
|
printStackTrace | public void printStackTrace(java.io.PrintStream s)(Code) | | Print the the trace of methods from where the error
originated. This will trace all nested exception
objects, as well as this object.
Parameters: s - The stream where the dump will be sent to. |
printStackTrace | public void printStackTrace(java.io.PrintWriter s)(Code) | | Print the the trace of methods from where the error
originated. This will trace all nested exception
objects, as well as this object.
Parameters: s - The writer where the dump will be sent to. |
setLocator | public void setLocator(SourceLocator location)(Code) | | Method setLocator sets an instance of a SourceLocator
object that specifies where an error occured.
Parameters: location - A SourceLocator object, or null to clear the location. |
|
|
|