Class ParserInstantiationException

All Implemented Interfaces:
Serializable

public class ParserInstantiationException extends DeltaXMLError

Thrown to indicate a problem instantiating or configuring a SAX Parser.

The PipelinedComparator makes use of SAX Parsers in its implementation. If there are problems instantiating or configuring these parsers this exception may be thrown.

When using JAXP the getCause() method should provide details of the underlying ParserConfigurationException or SAXException. Alternatively if the bypassJAXPFactories setting is in use getCause() may provide a ClassNotFoundException, InstantiationException or IllegalAccessException with details of the underlying cause.

If this exception is encountered we suggest checking any JAXP parser factory property settings and classpath contents, or if the bypassJAXPFactories setting is in effect, checking that xercesImpl.jar is available on the classpath. If the problems cannot be resolved please contact support for further assistance.

Author:
Nigel Whitaker
See Also:
  • Constructor Details

    • ParserInstantiationException

      public ParserInstantiationException(String message, Throwable t)
      Creates a new ParserInstantiationException.
      Parameters:
      message - The message string
      t - A nested throwable should it have lead to or caused this exception