guoyuji
2024-12-10 7b0d59dbd16a0f90eec1ad35eff64cf40d3b97e7
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;
    }
}