PropertyRejectedException ClassXML Compare .NET API Documentation
XML Compare .NET API Documentation - DEPRECATED
This Exception is thrown when a comparison is started on an XMLComparator on which setProperty has been called with arguments that are not understood by a parent org.xml.sax.XMLReader.
Inheritance Hierarchy

System Object
  System Exception
    Throwable
      Exception
        com.deltaxml.api DeltaXMLException
          com.deltaxml.api DeltaXMLProcessingException
            com.deltaxml.api PropertyRejectedException

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

[SerializableAttribute]
public class PropertyRejectedException : DeltaXMLProcessingException
Remarks

This Exception is thrown when a comparison is started on an XMLComparator on which setProperty has been called with arguments that are not understood by a parent org.xml.sax.XMLReader.

com.deltaxml.api.XMLComparator.setProperty(System.String,System.Object) calls cause the property name and value to be stored until a comparison is started, at which time they are passed back up the input filter chains as defined by the SAX specification. If at any point, a parent org.xml.sax.XMLReader throws a org.xml.sax.SAXNotRecognizedException or a org.xml.sax.SAXNotSupportedException when a property is passed to it, this Exception will be thrown by the com.deltaxml.api.XMLComparator

com.deltaxml.api.DeltaXMLException.getCause can be used to get the underlying cause of this exception

See Also