feat: 提交项目代码

This commit is contained in:
super_liu
2021-05-31 14:56:05 +08:00
parent d50bb875cb
commit 3ed9ca235a
234 changed files with 27792 additions and 0 deletions
@@ -0,0 +1,25 @@
package com.adc.da.exception;
public class AdcDaBaseException extends RuntimeException {
private String errorCode;
public AdcDaBaseException() {
}
public AdcDaBaseException(String message) {
this("-1", message);
}
public AdcDaBaseException(String errorCode, String message) {
super(message);
this.errorCode = errorCode;
}
public String getErrorCode() {
return this.errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
}