xuefei
2020-12-10 8e1bcb11e81cc2ca486c16c9524489ebfc04018d
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;
    }
}