diff --git a/pig-common/src/main/java/com/github/pig/common/util/exception/CheckedException.java b/pig-common/src/main/java/com/github/pig/common/util/exception/CheckedException.java new file mode 100644 index 00000000..5984d998 --- /dev/null +++ b/pig-common/src/main/java/com/github/pig/common/util/exception/CheckedException.java @@ -0,0 +1,30 @@ +package com.github.pig.common.util.exception; + +/** + * @author lengleng + * @date 😴2017年12月21日20:44:38 + */ +public class CheckedException extends RuntimeException { + + private static final long serialVersionUID = 1L; + + public CheckedException() { + } + + public CheckedException(String message) { + super(message); + } + + public CheckedException(Throwable cause) { + super(cause); + } + + public CheckedException(String message, Throwable cause) { + super(message, cause); + } + + public CheckedException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { + super(message, cause, enableSuppression, writableStackTrace); + } + +}