javax.xml.transform
public class TransformerFactoryConfigurationError extends Error
Constructor Summary | |
---|---|
TransformerFactoryConfigurationError()
Create a new TransformerFactoryConfigurationError with no
detail mesage. | |
TransformerFactoryConfigurationError(String msg)
Create a new TransformerFactoryConfigurationError with
the String specified as an error message.
| |
TransformerFactoryConfigurationError(Exception e)
Create a new TransformerFactoryConfigurationError with a
given Exception base cause of the error.
| |
TransformerFactoryConfigurationError(Exception e, String msg)
Create a new TransformerFactoryConfigurationError with the
given Exception base cause and detail message.
|
Method Summary | |
---|---|
Exception | getException()
Return the actual exception (if any) that caused this exception to
be raised.
|
String | getMessage()
Return the message (if any) for this error . |
TransformerFactoryConfigurationError
with no
detail mesage.TransformerFactoryConfigurationError
with
the String
specified as an error message.
Parameters: msg The error message for the exception.
TransformerFactoryConfigurationError
with a
given Exception
base cause of the error.
Parameters: e The exception to be encapsulated in a TransformerFactoryConfigurationError.
TransformerFactoryConfigurationError
with the
given Exception
base cause and detail message.
Parameters: e The exception to be encapsulated in a TransformerFactoryConfigurationError msg The detail message. e The exception to be wrapped in a TransformerFactoryConfigurationError
Returns: The encapsulated exception, or null if there is none.
Returns: The error message.