This commit is contained in:
白茶清欢 2025-06-15 18:59:53 +08:00
parent 0c1607e01d
commit 6be7aad22e

View File

@ -1,20 +0,0 @@
package cn.zhangdeman.exception;
import lombok.Getter;
import lombok.Setter;
import java.util.List;
@Getter
@Setter
public class BaseException implements ICustomExceptionConfig {
private String code;
private String message;
private String category;
public BaseException(String code, String message, String category) {
setCode(code);
setMessage(message);
setCategory(category);
}
}