| |
|
| java.lang.Object java.lang.Throwable java.lang.Error org.apache.commons.jxpath.JXPathContextFactoryConfigurationError
JXPathContextFactoryConfigurationError | public class JXPathContextFactoryConfigurationError extends Error (Code) | | Thrown when a problem with configuration with the JXPathContextFactories
exists. This error will typically be thrown when the class of a
factory specified in the system properties cannot be found
or instantiated.
author: Dmitri Plotnikov version: $Revision: 1.5 $ $Date: 2004/02/29 14:17:42 $ |
Method Summary | |
public Exception | getException() Return the actual exception (if any) that caused this exception to
be raised. | public String | getMessage() Return the message (if any) for this error . |
JXPathContextFactoryConfigurationError | public JXPathContextFactoryConfigurationError()(Code) | | Create a new JXPathContextFactoryConfigurationError with no
detail mesage.
|
JXPathContextFactoryConfigurationError | public JXPathContextFactoryConfigurationError(String msg)(Code) | | Create a new JXPathContextFactoryConfigurationError with
the String specified as an error message.
Parameters: msg - The error message for the exception. |
JXPathContextFactoryConfigurationError | public JXPathContextFactoryConfigurationError(Exception e)(Code) | | Create a new JXPathContextFactoryConfigurationError with a
given Exception base cause of the error.
Parameters: e - The exception to be encapsulated in aJXPathContextFactoryConfigurationError. |
JXPathContextFactoryConfigurationError | public JXPathContextFactoryConfigurationError(Exception e, String msg)(Code) | | Create a new JXPathContextFactoryConfigurationError with the
given Exception base cause and detail message.
Parameters: e - The exception to be encapsulated in aJXPathContextFactoryConfigurationError Parameters: msg - The detail message. |
getException | public Exception getException()(Code) | | Return the actual exception (if any) that caused this exception to
be raised.
The encapsulated exception, or null if there is none. |
getMessage | public String getMessage()(Code) | | 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.
The error message. |
|
|
|