tech.gusavila92.websocketclient.exceptions.IllegalSchemeException 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
package tech.gusavila92.websocketclient.exceptions;
/**
* Exception which indicates that the received schema is invalid
*
* @author Gustavo Avila
*
*/
public class IllegalSchemeException extends IllegalArgumentException {
public IllegalSchemeException(String message) {
super(message);
}
}