HttpException.java 902 Bytes
package com.subsidy.common.exception;


import com.subsidy.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;
    }
}