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

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

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