fei
5 天以前 2d59c3e55978bd93741dae7a8ff21cf63b9ecf25
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;
    }
}