public class TransformerConfigurationException extends TransformerException
| Constructor and Description |
|---|
TransformerConfigurationException()
Create a new
TransformerConfigurationException with no detail mesage.
|
TransformerConfigurationException(String
Create a new
TransformerConfigurationException with the
String specified as an error message.
|
TransformerConfigurationException(String
Create a new TransformerConfigurationException from a message and a Locator.
|
TransformerConfigurationException(String
Wrap an existing exception in a TransformerConfigurationException.
|
TransformerConfigurationException(String
Create a new
TransformerConfigurationException with the given
Exception base cause and detail message.
|
TransformerConfigurationException(Throwable
Create a new
TransformerConfigurationException with a given
Exception base cause of the error.
|
getCause, getException, getLocationAsString, getLocator, getMessageAndLocation, initCause, printStackTrace, printStackTrace, printStackTrace, setLocatoraddSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, setStackTrace, toStringpublic TransformerConfigurationException()
TransformerConfigurationException with no detail mesage.
public TransformerConfigurationException(Stringmsg)
TransformerConfigurationException with the
String specified as an error message.
msg - The error message for the exception.
public TransformerConfigurationException(Throwablee)
TransformerConfigurationException with a given
Exception base cause of the error.
e - The exception to be encapsulated in a TransformerConfigurationException.
public TransformerConfigurationException(Stringmsg, Throwable e)
TransformerConfigurationException with the given
Exception base cause and detail message.
e - The exception to be encapsulated in a TransformerConfigurationException
msg - The detail message.
public TransformerConfigurationException(Stringmessage, SourceLocator locator)
This constructor is especially useful when an application is creating its own exception from within a DocumentHandler callback.
message - The error or warning message.
locator - The locator object for the error or warning.
public TransformerConfigurationException(Stringmessage, SourceLocator locator, Throwable e)
message - The error or warning message, or null to use the message from the embedded exception.
locator - The locator object for the error or warning.
e - Any exception.