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

com.github.ltsopensource.remoting.exception.RemotingConnectException Maven / Gradle / Ivy

package com.github.ltsopensource.remoting.exception;

/**
 * Client连接Server失败,抛出此异常
 */
public class RemotingConnectException extends RemotingException {
    private static final long serialVersionUID = -5565366231695911316L;

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

    public RemotingConnectException(String addr, Throwable cause) {
        super("connect to <" + addr + "> failed", cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy