HttpException.java 907 Bytes
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;
    }
}