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

org.java_websocket.exceptions.LimitExedeedException 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 LimitExedeedException extends InvalidDataException {

	/**
	 * Serializable
	 */
	private static final long serialVersionUID = 6908339749836826785L;

	public LimitExedeedException() {
		super( CloseFrame.TOOBIG );
	}

	public LimitExedeedException( String s ) {
		super( CloseFrame.TOOBIG, s );
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy