tech.gusavila92.websocketclient.exceptions.InvalidServerHandshakeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-android-websocket-client Show documentation
Show all versions of java-android-websocket-client Show documentation
A very lightweight WebSocket client library for Java/Android which aims to implement the WebSocket protocol as defined in RFC 6455
The newest version!
package tech.gusavila92.websocketclient.exceptions;
/**
* Exception which indicates that the handshake received from the server is
* invalid
*
* @author Gustavo Avila
*
*/
public class InvalidServerHandshakeException extends RuntimeException {
public InvalidServerHandshakeException(String message) {
super(message);
}
}