chenlu
2024-09-06 3b57e97dc5180bf730357a93d5ded238a6ea80d1
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;
    }
}