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

org.rx.net.transport.ClientDisconnectedException Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy