Class JXPathContextFactoryConfigurationError

java.lang.Object
java.lang.Throwable
java.lang.Error
org.apache.commons.jxpath.JXPathContextFactoryConfigurationError
All Implemented Interfaces:
Serializable

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.
See Also:
  • Constructor Details Link icon

    • JXPathContextFactoryConfigurationError Link icon

      Constructs a new JXPathContextFactoryConfigurationError with no detail mesage.
    • JXPathContextFactoryConfigurationError Link icon

      Constructs a new JXPathContextFactoryConfigurationError with a given Exception base cause of the error.
      Parameters:
      cause - The exception to be encapsulated in a JXPathContextFactoryConfigurationError.
    • JXPathContextFactoryConfigurationError Link icon

      Constructs a new JXPathContextFactoryConfigurationError with the given Exception base cause and detail message.
      Parameters:
      cause - The exception to be encapsulated in a JXPathContextFactoryConfigurationError
      msg - The detail message.
    • JXPathContextFactoryConfigurationError Link icon

      Constructs a new JXPathContextFactoryConfigurationError with the String specified as an error message.
      Parameters:
      msg - The error message for the exception.
  • Method Details Link icon

    • getException Link icon

      Gets the actual exception (if any) that caused this exception to be raised.
      Returns:
      The encapsulated exception, or null if there is none.