com.pusher.java_websocket.exceptions.InvalidFrameException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-websocket Show documentation
Show all versions of java-websocket Show documentation
The Pusher fork of TooTallNate/Java-Websocket
package com.pusher.java_websocket.exceptions;
import com.pusher.java_websocket.framing.CloseFrame;
public class InvalidFrameException extends InvalidDataException {
/**
* Serializable
*/
private static final long serialVersionUID = -9016496369828887591L;
public InvalidFrameException() {
super( CloseFrame.PROTOCOL_ERROR );
}
public InvalidFrameException( String arg0 ) {
super( CloseFrame.PROTOCOL_ERROR, arg0 );
}
public InvalidFrameException( Throwable arg0 ) {
super( CloseFrame.PROTOCOL_ERROR, arg0 );
}
public InvalidFrameException( String arg0 , Throwable arg1 ) {
super( CloseFrame.PROTOCOL_ERROR, arg0, arg1 );
}
}