feat: create manage-common module structure

This commit is contained in:
张翔
2026-03-13 12:52:18 +08:00
parent f88d3e1eab
commit c864357b62
3 changed files with 95 additions and 0 deletions
@@ -0,0 +1,22 @@
package cn.novalon.manage.common.exception;
public class BusinessException extends RuntimeException {
private final String code;
private final String message;
public BusinessException(String code, String message) {
super(message);
this.code = code;
this.message = message;
}
public String getCode() {
return code;
}
@Override
public String getMessage() {
return message;
}
}