fun.mike.frontier.alpha.MissingLocalFileException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of frontier-alpha Show documentation
Show all versions of frontier-alpha Show documentation
A file transfer library. Wraps commons-net and JSch.
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);
}
}