服务启动

This commit is contained in:
2025-12-05 18:24:21 +08:00
parent a8233ceb72
commit 133209691e
39 changed files with 2526 additions and 30 deletions

View File

@@ -0,0 +1,27 @@
package org.xyzh.common.core.exception;
public class BaseException extends RuntimeException{
private Integer code;
private String description;
public BaseException(Integer code, String description, String message) {
super(message);
this.code = code;
this.description = description;
}
public Integer getCode(){
return this.code;
}
public String getDescription(){
return this.description;
}
public String getMessage(){
return super.getMessage();
}
}