Files
zfile/src/main/java/im/zhaojun/common/exception/NotExistFileException.java
zhaojun1998 3ffdb4f1b2 清洁代码
2020-01-30 16:47:03 +08:00

29 lines
663 B
Java

package im.zhaojun.common.exception;
/**
* @author zhaojun
*/
public class NotExistFileException extends RuntimeException {
public NotExistFileException() {
super();
}
public NotExistFileException(String message) {
super(message);
}
public NotExistFileException(String message, Throwable cause) {
super(message, cause);
}
public NotExistFileException(Throwable cause) {
super(cause);
}
protected NotExistFileException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}