fei
2025-10-12 25d0b36cc39f51c7b03f28f30cfc6ed5a10769d3
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;
    }
}