XMLComparatorFactoryConfigurationError ClassXML Compare .NET API Documentation
XML Compare .NET API Documentation - DEPRECATED
This class is used to indicate an error in the configuration of a XMLComparator factory.
Inheritance Hierarchy

System Object
  System Exception
    Throwable
      Error
        com.deltaxml.api DeltaXMLError
          com.deltaxml.api XMLComparatorFactoryConfigurationError

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

[SerializableAttribute]
public class XMLComparatorFactoryConfigurationError : DeltaXMLError
Remarks

This class is used to indicate an error in the configuration of a XMLComparator factory. Such errors may include:

  • Detecting a SecurityException when attempting to read a property value
  • Not being able to locate or instantiate the default factory implementation

Note that this class ultimately extends from java.lang.Error (because it is not expected to occur in normal use) and thus does not need to be declared in method throws clauses.

Many, if not all, uses of this Error will be caused by other Errors or Exceptions being thrown. The wrapped Exceptions should be checked using methods such as com.deltaxml.api.DeltaXMLError.getThrowable.

See Also