廖井涛
2024-08-06 31b9b4cb19fab4f478ff8762ce5742fa1736b1cb
north-glass-erp/src/main/java/com/example/erp/exception/ServiceException.java
New file
@@ -0,0 +1,12 @@
package com.example.erp.exception;
import lombok.Getter;
@Getter
public class ServiceException extends RuntimeException {
    private  String code;
    public ServiceException(String code, String msg){
        super(msg);
        this.code=code;
    }
}