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

fun.mike.frontier.alpha.MissingLocalFileException Maven / Gradle / Ivy

There is a newer version: 0.0.14
Show newest version
package fun.mike.frontier.alpha;

public class MissingLocalFileException extends RuntimeException {
    public MissingLocalFileException(String msg) {
        super(msg);
    }

    public MissingLocalFileException(Throwable t) {
        super(t);
    }

    public MissingLocalFileException(String msg, Throwable t) {
        super(msg, t);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy