fei
5 天以前 07a2f9c762efb3be3a29e2e8cc7004d4164cc9d8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.util;
 
import lombok.Data;
 
@Data
public class ErrorcodeExceptionextends extends RuntimeException
{
    private Integer code;
    private String message;
 
 
 
    public ErrorcodeExceptionextends(Integer code,String msg)
    {
        this.message = msg;
        this.code = code;
    }
    public ErrorcodeExceptionextends(String msg) {
        super(msg);
        this.message = msg;
    }
}