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

com.pusher.java_websocket.exceptions.InvalidFrameException Maven / Gradle / Ivy

There is a newer version: 1.4.1
Show newest version
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 );
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy