javax.xml.parsers
public class: FactoryConfigurationError [javadoc |
source]
java.lang.Object
java.lang.Throwable
java.lang.Error
javax.xml.parsers.FactoryConfigurationError
All Implemented Interfaces:
Serializable
Thrown when a problem with configuration with the Parser Factories
exists. This error will typically be thrown when the class of a
parser factory specified in the system properties cannot be found
or instantiated.
- author:
< - a href="mailto:Jeff.Suttor@Sun.com">Jeff Suttor
| 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.parsers.FactoryConfigurationError 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, if it exists will be
returned. Else the name of the encapsulated exception will be
returned. |