com.deltaxml.core.ComparatorInstantiationException 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;
/**
* @see
* Class ComparatorInstantiationException
*/
public class ComparatorInstantiationException extends PipelinedComparatorException {
public ComparatorInstantiationException(String message) {
super(message);
throw new UnsupportedOperationException();
}
public ComparatorInstantiationException(Throwable t) {
super(t);
throw new UnsupportedOperationException();
}
public ComparatorInstantiationException(String message, Throwable t) {
super(message, t);
throw new UnsupportedOperationException();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy