com.deltaxml.core.PipelinedComparatorException 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;
/**
* Indicates an error condition in the {@link PipelinedComparator}.
*
*
* This class is the super-class of most of the checked exceptions
* thrown by the {@link PipelinedComparator} methods. As such it could be used
* for simplified, coarse-grain catch or throws clauses.
*
* @see
* Class PipelinedComparatorException
*/
public class PipelinedComparatorException extends DeltaXMLException {
public PipelinedComparatorException(String message) {
super(message);
throw new UnsupportedOperationException();
}
public PipelinedComparatorException(Throwable e) {
super(e);
throw new UnsupportedOperationException();
}
public PipelinedComparatorException(String message, Throwable e) {
super(message, e);
throw new UnsupportedOperationException();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy