新增配置参数异常
This commit is contained in:
parent
77656d2305
commit
6a9b2e27e2
@ -0,0 +1,36 @@
|
|||||||
|
package ink.wgink.exceptions;
|
||||||
|
|
||||||
|
import ink.wgink.exceptions.base.SystemException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* When you feel like quitting. Think about why you started
|
||||||
|
* 当你想要放弃的时候,想想当初你为何开始
|
||||||
|
*
|
||||||
|
* @ClassName: PropertiesException
|
||||||
|
* @Description: 属性异常
|
||||||
|
* @Author: wanggeng
|
||||||
|
* @Date: 2021/4/8 5:22 下午
|
||||||
|
* @Version: 1.0
|
||||||
|
*/
|
||||||
|
public class PropertiesException extends SystemException {
|
||||||
|
|
||||||
|
public PropertiesException() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public PropertiesException(String message) {
|
||||||
|
super(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
public PropertiesException(String message, boolean withMsg) {
|
||||||
|
super(message, withMsg);
|
||||||
|
}
|
||||||
|
|
||||||
|
public PropertiesException(String message, Throwable cause) {
|
||||||
|
super(message, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
public PropertiesException(Throwable cause) {
|
||||||
|
super(cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user