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

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

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