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

tech.gusavila92.websocketclient.exceptions.UnknownOpcodeException Maven / Gradle / Ivy

Go to download

A very lightweight WebSocket client library for Java/Android which aims to implement the WebSocket protocol as defined in RFC 6455

There is a newer version: 1.2.2
Show newest version
package tech.gusavila92.websocketclient.exceptions;

/**
 * Exception which indicates that a received opcode is unknown
 * 
 * @author Gustavo Avila
 *
 */
public class UnknownOpcodeException extends RuntimeException {
	public UnknownOpcodeException(String message) {
		super(message);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy