All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.netty.protocol.nrpc.exception.RpcResponseException Maven / Gradle / Ivy

The newest version!
package com.github.netty.protocol.nrpc.exception;

/**
 * RpcResponseException
 *
 * @author wangzihao
 * 2018/8/21/021
 */
public class RpcResponseException extends RpcException {
    /**
     * Error status code
     */
    private Integer status;

    public RpcResponseException(Integer status, String message) {
        super(message, null, false, false);
        this.status = status;
    }

    public RpcResponseException(Integer status, String message, boolean writableStackTrace) {
        super(message, null, false, writableStackTrace);
        this.status = status;
    }

    public Integer getStatus() {
        return status;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy