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

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

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 - 2024 Weber Informatics LLC | Privacy Policy