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

com.github.linshenkx.rpcnettycommon.exception.remoting.RemotingSendRequestException Maven / Gradle / Ivy

package com.github.linshenkx.rpcnettycommon.exception.remoting;


public class RemotingSendRequestException extends RemotingException {

    public RemotingSendRequestException(String addr) {
        this(addr, null);
    }


    public RemotingSendRequestException(String addr, Throwable cause) {
        super("send request to <" + addr + "> failed", cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy