文件解析异常提示信息优化

This commit is contained in:
zhaojun1998
2021-02-08 17:58:37 +08:00
parent bea440f6c3
commit c14b8343d2

View File

@@ -0,0 +1,29 @@
package im.zhaojun.zfile.exception;
/**
* 文件解析异常
* @author zhaojun
*/
public class TextParseException extends RuntimeException {
public TextParseException() {
super();
}
public TextParseException(String message) {
super(message);
}
public TextParseException(String message, Throwable cause) {
super(message, cause);
}
public TextParseException(Throwable cause) {
super(cause);
}
protected TextParseException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}