mirror of https://gitee.com/maxjhandsome/pig
修改类名称规范化
This commit is contained in:
parent
717c7f9dd8
commit
16589c86e7
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue