UnsupportedSourceException ClassXML Compare .NET API Documentation
XML Compare .NET API Documentation - DEPRECATED
Thrown to indicate the use of a pipeline Source input which is not supported.
Inheritance Hierarchy

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

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

[SerializableAttribute]
public class UnsupportedSourceException : PipelinedComparatorException
Remarks

Thrown to indicate the use of a pipeline Source input which is not supported.

The PipelinedComparator only supports certain subclasses of javax.xml.transform.Source. This exception is thrown when the inputs are not compatible with those supported. The supported subclasses are:

  • javax.xml.transform.stream.StreamSource
  • javax.xml.transform.sax.SAXSource

The class of the supplied argument can be obtained with: com.deltaxml.core.UnsupportedSourceException.getSuppliedClass

See Also