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

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

package com.pusher.java_websocket.exceptions;

import com.pusher.java_websocket.framing.CloseFrame;

public class InvalidHandshakeException extends InvalidDataException {

	/**
	 * Serializable
	 */
	private static final long serialVersionUID = -1426533877490484964L;

	public InvalidHandshakeException() {
		super( CloseFrame.PROTOCOL_ERROR );
	}

	public InvalidHandshakeException( String arg0 , Throwable arg1 ) {
		super( CloseFrame.PROTOCOL_ERROR, arg0, arg1 );
	}

	public InvalidHandshakeException( String arg0 ) {
		super( CloseFrame.PROTOCOL_ERROR, arg0 );
	}

	public InvalidHandshakeException( Throwable arg0 ) {
		super( CloseFrame.PROTOCOL_ERROR, arg0 );
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy