修改类名称规范化

This commit is contained in:
wangiegie@gmail.com 2018-01-24 18:10:23 +08:00
parent 16589c86e7
commit 6768af886f
1 changed files with 0 additions and 30 deletions

View File

@ -1,30 +0,0 @@
package com.github.pig.common.util.exception;
/**
* @author lengleng
* @date 😴2017年12月21日20:44:38
*/
public class CheckException extends RuntimeException {
private static final long serialVersionUID = 1L;
public CheckException() {
}
public CheckException(String message) {
super(message);
}
public CheckException(Throwable cause) {
super(cause);
}
public CheckException(String message, Throwable cause) {
super(message, cause);
}
public CheckException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}