
com.deltaxml.core.FeatureNotRecognizedException 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 that a feature name has not been recognized.
*
*
* Features are used to configure various aspects of the
* {@link PipelinedComparator} operation, including parsing and comparison. They
* are specified with String values to allow run-time pluggability of
* implementations with different feature sets. In doing so, compile-time type
* safety is degraded and replaced by this exception.
*
* Associated methods include:
*
*
* - {@link PipelinedComparator#setParserFeature(String, boolean)}
* - {@link PipelinedComparator#getParserFeature(String)}
* - {@link PipelinedComparator#setComparatorFeature(String, boolean)}
* - {@link PipelinedComparator#getComparatorFeature(String)}
*
*
* @see
* Class FeatureNotRecognizedException
*/
public class FeatureNotRecognizedException extends PipelinedComparatorException {
public FeatureNotRecognizedException(String message, String featureName) {
super(message);
throw new UnsupportedOperationException();
}
public FeatureNotRecognizedException(String message, Throwable t, String featureName) {
super(message, t);
throw new UnsupportedOperationException();
}
public FeatureNotRecognizedException(Throwable t, String featureName) {
super(t);
throw new UnsupportedOperationException();
}
public String getFeatureName() {
throw new UnsupportedOperationException();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy