初始化代码

This commit is contained in:
黄志军
2021-10-26 19:20:52 +08:00
commit 61f66423e5
84 changed files with 28268 additions and 0 deletions
@@ -0,0 +1,34 @@
/*
* @(#) BeanCloneException
* 版权声明 网宿科技, 版权所有 违者必究
*
* <br> Copyright: Copyright (c) 2018
* <br> Company:网宿科技
* <br> @author Administrator
* <br> @description 功能描述
* <br> 2018-10-07 17:13:13
*/
package exception;
public class BeanCloneException extends RuntimeException {
public BeanCloneException() {
super();
}
public BeanCloneException(String message) {
super(message);
}
public BeanCloneException(String message, Throwable cause) {
super(message, cause);
}
public BeanCloneException(Throwable cause) {
super(cause);
}
protected BeanCloneException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}