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

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

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

public class RemotingTimeoutException extends RemotingException {


	public RemotingTimeoutException(String message) {
        super(message);
    }


    public RemotingTimeoutException(String addr, long timeoutMillis) {
        this(addr, timeoutMillis, null);
    }


    public RemotingTimeoutException(String addr, long timeoutMillis, Throwable cause) {
        super("wait response on the channel <" + addr + "> timeout, " + timeoutMillis + "(ms)", cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy