org.rx.net.transport.ClientDisconnectedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxlib Show documentation
Show all versions of rxlib Show documentation
A set of utilities for Java
package org.rx.net.transport;
import org.rx.exception.InvalidException;
public class ClientDisconnectedException extends InvalidException {
public ClientDisconnectedException(Object clientId) {
super("The client {} disconnected", clientId);
}
public ClientDisconnectedException(Throwable cause) {
super("The client disconnected", cause);
}
}