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