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

org.java_websocket.exceptions.InvalidFrameException Maven / Gradle / Ivy

There is a newer version: 1.6.0
Show newest version
package org.java_websocket.exceptions;

import org.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 - 2025 Weber Informatics LLC | Privacy Policy