All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.deltaxml.core.PipelineProcessingException Maven / Gradle / Ivy

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