com.github.fartherp.framework.remoting.exception.RemotingConnectException Maven / Gradle / Ivy
/*
* Copyright (c) 2017. CK. All rights reserved.
*/
package com.github.fartherp.framework.remoting.exception;
/**
* @author hyssop
*/
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 - 2025 Weber Informatics LLC | Privacy Policy