com.pusher.java_websocket.exceptions.NotSendableException 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;
public class NotSendableException extends RuntimeException {
/**
* Serializable
*/
private static final long serialVersionUID = -6468967874576651628L;
public NotSendableException() {
}
public NotSendableException( String message ) {
super( message );
}
public NotSendableException( Throwable cause ) {
super( cause );
}
public NotSendableException( String message , Throwable cause ) {
super( message, cause );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy