ParserInstantiationException ClassXML Compare .NET API Documentation
XML Compare .NET API Documentation - DEPRECATED
Thrown to indicate a problem instantiating or configuring a SAX Parser.
Inheritance Hierarchy

System Object
  System Exception
    Throwable
      Exception
        com.deltaxml.api DeltaXMLException
          com.deltaxml.core PipelinedComparatorException
            com.deltaxml.core ParserInstantiationException

Namespace: com.deltaxml.core
Assembly: deltaxml (in deltaxml.dll) Version: 10.4.0.1000
Syntax

[SerializableAttribute]
public class ParserInstantiationException : PipelinedComparatorException
Remarks

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 javax.xml.parsers.ParserConfigurationException or org.xml.sax.SAXException. Alternatively if the bypassJAXPFactories setting is in use getCause() may provide a java.lang.ClassNotFoundException, java.lang.InstantiationException or java.lang.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 DeltaXML support for further assistance.

See Also