com.deltaxml.core.PropertyNotRecognizedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xmlcalabash-extension-stubs Show documentation
Show all versions of xmlcalabash-extension-stubs Show documentation
This artifact defines API stubs for compiling extension classes.
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