com.github.nkzawa.socketio.client.SocketIOException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of socket.io-client Show documentation
Show all versions of socket.io-client Show documentation
Socket.IO Client Library for Java
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);
}
}