All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.deltaxml.core.PropertyNotRecognizedException Maven / Gradle / Ivy

The newest version!
package com.deltaxml.core;

/**
 * Thrown to indicate a problem setting a property on the
 * {@link PipelinedComparator}.
 *
 * 

* Properties provide an extensible mechanism for configuring the operation of * the pipeline. Unlike features these methods accept or provide complex String, * or more generally Object, values rather than booleans. They are used in * different contexts:

* *
    *
  • SAX Parser configuration: * {@link PipelinedComparator#setParserProperty(String, Object)}
  • *
  • Comparator configuration: * {@link PipelinedComparator#setComparatorProperty(String, Object)}
  • *
  • Output format specification: * {@link PipelinedComparator#setOutputProperty(String, String)}
  • *
* *

* The {@link #getPropertyName()} method provides access to the name that was * attempted to be set and which was not recognized. Please consult the * appropriate method descriptions for full details of the supported * properties.

* * @see * Class PropertyNotRecognizedException */ public class PropertyNotRecognizedException extends PipelinedComparatorException { public PropertyNotRecognizedException(String message, Throwable e, String propertyName) { super(message, e); throw new UnsupportedOperationException(); } public PropertyNotRecognizedException(String message, String propertyName) { super(message); throw new UnsupportedOperationException(); } public PropertyNotRecognizedException(Throwable e, String propertyName) { super(e); throw new UnsupportedOperationException(); } public String getPropertyName() { throw new UnsupportedOperationException(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy