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

com.github.nkzawa.socketio.client.SocketIOException Maven / Gradle / Ivy

There is a newer version: 0.6.0
Show newest version
package com.github.nkzawa.socketio.client;

public class SocketIOException extends Exception {

    public SocketIOException() {
        super();
    }

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

    public SocketIOException(String message, Throwable cause) {
        super(message, cause);
    }

    public SocketIOException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy