ComparatorInstantiationException ClassXML Compare .NET API Documentation
XML Compare .NET API Documentation - DEPRECATED
Thrown to indicate a problem instantiating or configuring a DeltaXML Comparator.
Inheritance Hierarchy

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

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

[SerializableAttribute]
public class ComparatorInstantiationException : PipelinedComparatorException
Remarks

Thrown to indicate a problem instantiating or configuring a DeltaXML Comparator.

The PipelinedComparator makes use of the DeltaXML Comparator in its implementation. If there are problems instantiating or configuring the Comparator then this Exception will be thrown. Since the Comparator and its associated factory methods are included in the same jar file as the PipelinedComparator the only conceivable situation where this would fail is where the factory methods implementation class property has been incorrectly defined/redefined.

The getCause() method should provide details of the underlying com.deltaxml.api.XMLComparatorFactoryConfigurationError or com.deltaxml.api.XMLComparatorConfigurationException .

See Also