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.Error
Thrown when a problem with configuration with theJXPathContextFactories
exists. 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) $
- Author:
- Dmitri Plotnikov
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Exception
exception
-
Constructor Summary
Constructors Constructor Description JXPathContextFactoryConfigurationError()
Create a newJXPathContextFactoryConfigurationError
with no detail mesage.JXPathContextFactoryConfigurationError(java.lang.Exception e)
Create a newJXPathContextFactoryConfigurationError
with a givenException
base cause of the error.JXPathContextFactoryConfigurationError(java.lang.Exception e, java.lang.String msg)
Create a newJXPathContextFactoryConfigurationError
with the givenException
base cause and detail message.JXPathContextFactoryConfigurationError(java.lang.String msg)
Create a newJXPathContextFactoryConfigurationError
with theString
specified as an error message.
-
Method Summary
All Methods Instance Methods Concrete Methods 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 .
-
-
-
Constructor Detail
-
JXPathContextFactoryConfigurationError
public JXPathContextFactoryConfigurationError()
Create a newJXPathContextFactoryConfigurationError
with no detail mesage.
-
JXPathContextFactoryConfigurationError
public JXPathContextFactoryConfigurationError(java.lang.String msg)
Create a newJXPathContextFactoryConfigurationError
with theString
specified as an error message.- Parameters:
msg
- The error message for the exception.
-
JXPathContextFactoryConfigurationError
public JXPathContextFactoryConfigurationError(java.lang.Exception e)
Create a newJXPathContextFactoryConfigurationError
with a givenException
base 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 newJXPathContextFactoryConfigurationError
with the givenException
base 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:
getMessage
in 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.
-
-