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