com.pusher.java_websocket.exceptions.LimitExedeedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-websocket Show documentation
Show all versions of java-websocket Show documentation
The Pusher fork of TooTallNate/Java-Websocket
The newest version!
package com.pusher.java_websocket.exceptions;
import com.pusher.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 - 2024 Weber Informatics LLC | Privacy Policy