io.socket.engineio.client.EngineIOException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of engine.io-client Show documentation
Show all versions of engine.io-client Show documentation
Engine.IO Client Library for Java
package io.socket.engineio.client;
public class EngineIOException extends Exception {
public String transport;
public Object code;
public EngineIOException() {
super();
}
public EngineIOException(String message) {
super(message);
}
public EngineIOException(String message, Throwable cause) {
super(message, cause);
}
public EngineIOException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy