xuefei
2020-12-12 160487aedf89e2aea61f043c7a5c3d211ed19798
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package cn.cetc54.platform.core.common.exception;
 
import lombok.Data;
 
/**
 * @author
 */
@Data
public class PlatformException extends RuntimeException {
 
    private String msg;
 
    public PlatformException(String msg){
        super(msg);
        this.msg = msg;
    }
}