public class TransformerFactoryConfigurationError
extends java.lang.Error
| Constructor | Description |
|---|---|
TransformerFactoryConfigurationError() |
Create a new
TransformerFactoryConfigurationError with no
detail message. |
TransformerFactoryConfigurationError(java.lang.Exception e) |
Create a new
TransformerFactoryConfigurationError with a
given Exception base cause of the error. |
TransformerFactoryConfigurationError(java.lang.Exception e,
java.lang.String msg) |
Create a new
TransformerFactoryConfigurationError with the
given Exception base cause and detail message. |
TransformerFactoryConfigurationError(java.lang.String msg) |
Create a new
TransformerFactoryConfigurationError with
the String specified as an error message. |
| Modifier and Type | Method | Description |
|---|---|---|
java.lang.Exception |
getException() |
Return the actual exception (if any) that caused this exception to
be raised.
|
java.lang.String |
getMessage() |
Return the message (if any) for this error .
|
public TransformerFactoryConfigurationError()
TransformerFactoryConfigurationError with no
detail message.public TransformerFactoryConfigurationError(java.lang.String msg)
TransformerFactoryConfigurationError with
the String specified as an error message.msg - The error message for the exception.public TransformerFactoryConfigurationError(java.lang.Exception e)
TransformerFactoryConfigurationError with a
given Exception base cause of the error.e - The exception to be encapsulated in a
TransformerFactoryConfigurationError.public TransformerFactoryConfigurationError(java.lang.Exception e,
java.lang.String msg)
TransformerFactoryConfigurationError with the
given Exception base cause and detail message.e - The exception to be encapsulated in a
TransformerFactoryConfigurationErrormsg - The detail message.public java.lang.String getMessage()
getMessage in class java.lang.Throwablepublic java.lang.Exception getException()