廖井涛
2024-02-28 8bdd7d312b69736d1a79d5ea164eaee21916316b
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;
    }
}