From c14b8343d205bb08d4279b2d51af4d7149496396 Mon Sep 17 00:00:00 2001 From: zhaojun1998 Date: Mon, 8 Feb 2021 17:58:37 +0800 Subject: [PATCH] =?UTF-8?q?:sparkles:=20=E6=96=87=E4=BB=B6=E8=A7=A3?= =?UTF-8?q?=E6=9E=90=E5=BC=82=E5=B8=B8=E6=8F=90=E7=A4=BA=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../zfile/exception/TextParseException.java | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/main/java/im/zhaojun/zfile/exception/TextParseException.java diff --git a/src/main/java/im/zhaojun/zfile/exception/TextParseException.java b/src/main/java/im/zhaojun/zfile/exception/TextParseException.java new file mode 100644 index 0000000..6e3ac19 --- /dev/null +++ b/src/main/java/im/zhaojun/zfile/exception/TextParseException.java @@ -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); + } + +}