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

tfw.immutable.DataInvalidException Maven / Gradle / Ivy

package tfw.immutable;

public class DataInvalidException extends Exception {
    private static final long serialVersionUID = 1L;

    public DataInvalidException(String s) {
        super(s);
    }

    public DataInvalidException(String s, Throwable cause) {
        super(s, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy