Blame view

HttpException.java 907 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
package com.zhongzhi.common.exception;

import com.zhongzhi.common.configure.RemoteProperties;

/**
 * 异常处理
 *
 * @author DengMin
 * @date 2020/08/12
 **/
public class HttpException extends RuntimeException {

    private Integer code;

    private String message;

    public Integer getCode() {
        return code;
    }

    public void setCode(Integer code) {
        this.code = code;
    }

    @Override
    public String getMessage() {
        return message;
    }

    public void setMessage(String message) {
        this.message = message;
    }

    public HttpException(Integer code) {
        super(RemoteProperties.getMessage(code));
        String message = RemoteProperties.getMessage(code);
        this.message = message;
        this.code = code;
    }

    public HttpException(Integer code, String message) {
        this.message = message;
        this.code = code;
    }
}