zhibing.pu
2024-07-25 01d8de48c76467ff3b99b204e66d3ef86506fa52
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.stylefeng.guns.core.base.tips;
 
/**
 * 返回给前台的错误提示
 *
 * @author fengshuonan
 * @date 2016年11月12日 下午5:05:22
 */
public class ErrorTip extends Tip {
 
    public ErrorTip(int code, String message) {
        super();
        this.code = code;
        this.message = message;
    }
}