javax.xml.transform
public class: TransformerFactoryConfigurationError [javadoc |
source]
java.lang.Object
java.lang.Throwable
java.lang.Error
javax.xml.transform.TransformerFactoryConfigurationError
All Implemented Interfaces:
Serializable
Thrown when a problem with configuration with the Transformer Factories
exists. This error will typically be thrown when the class of a
transformation factory specified in the system properties cannot be found
or instantiated.
| Methods from java.lang.Throwable: |
|---|
|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from javax.xml.transform.TransformerFactoryConfigurationError Detail: |
public Exception getException() {
return exception;
}
Return the actual exception (if any) that caused this exception to
be raised. |
public String getMessage() {
String message = super.getMessage();
if ((message == null) && (exception != null)) {
return exception.getMessage();
}
return message;
}
Return the message (if any) for this error . If there is no
message for the exception and there is an encapsulated
exception then the message of that exception will be returned. |