Package org.apache.commons.jxpath
Class JXPathContextFactoryConfigurationError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Error
-
- org.apache.commons.jxpath.JXPathContextFactoryConfigurationError
-
- All Implemented Interfaces:
java.io.Serializable
public class JXPathContextFactoryConfigurationError extends java.lang.ErrorThrown when a problem with configuration with theJXPathContextFactoriesexists. This error will typically be thrown when the class of a factory specified in the system properties cannot be found or instantiated.- Version:
- $Revision: 652845 $ $Date: 2008-05-02 12:46:46 -0500 (Fri, 02 May 2008) $
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Exceptionexception
-
Constructor Summary
Constructors Constructor Description JXPathContextFactoryConfigurationError()Create a newJXPathContextFactoryConfigurationErrorwith no detail mesage.JXPathContextFactoryConfigurationError(java.lang.Exception e)Create a newJXPathContextFactoryConfigurationErrorwith a givenExceptionbase cause of the error.JXPathContextFactoryConfigurationError(java.lang.Exception e, java.lang.String msg)Create a newJXPathContextFactoryConfigurationErrorwith the givenExceptionbase cause and detail message.JXPathContextFactoryConfigurationError(java.lang.String msg)Create a newJXPathContextFactoryConfigurationErrorwith theStringspecified as an error message.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ExceptiongetException()Return the actual exception (if any) that caused this exception to be raised.java.lang.StringgetMessage()Return the message (if any) for this error .
-
-
-
Constructor Detail
-
JXPathContextFactoryConfigurationError
public JXPathContextFactoryConfigurationError()
Create a newJXPathContextFactoryConfigurationErrorwith no detail mesage.
-
JXPathContextFactoryConfigurationError
public JXPathContextFactoryConfigurationError(java.lang.String msg)
Create a newJXPathContextFactoryConfigurationErrorwith theStringspecified as an error message.- Parameters:
msg- The error message for the exception.
-
JXPathContextFactoryConfigurationError
public JXPathContextFactoryConfigurationError(java.lang.Exception e)
Create a newJXPathContextFactoryConfigurationErrorwith a givenExceptionbase cause of the error.- Parameters:
e- The exception to be encapsulated in a JXPathContextFactoryConfigurationError.
-
JXPathContextFactoryConfigurationError
public JXPathContextFactoryConfigurationError(java.lang.Exception e, java.lang.String msg)Create a newJXPathContextFactoryConfigurationErrorwith the givenExceptionbase cause and detail message.- Parameters:
e- The exception to be encapsulated in a JXPathContextFactoryConfigurationErrormsg- The detail message.
-
-
Method Detail
-
getMessage
public java.lang.String getMessage()
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.- Overrides:
getMessagein classjava.lang.Throwable- Returns:
- The error message.
-
getException
public java.lang.Exception getException()
Return the actual exception (if any) that caused this exception to be raised.- Returns:
- The encapsulated exception, or null if there is none.
-
-