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

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

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