io.github.jiawade.tool.exception.FileNotFoundException Maven / Gradle / Ivy
The newest version!
package io.github.jiawade.tool.exception;
public class FileNotFoundException extends RuntimeException{
public FileNotFoundException() {
super();
}
public FileNotFoundException(String msg) {
super(msg);
}
}