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

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

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

public class IncompleteHandshakeException extends RuntimeException {

	private static final long serialVersionUID = 7906596804233893092L;
	private int newsize;

	public IncompleteHandshakeException( int newsize ) {
		this.newsize = newsize;
	}

	public IncompleteHandshakeException() {
		this.newsize = 0;
	}

	public int getPreferedSize() {
		return newsize;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy