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

net.hycube.transport.NetworkNodePointerException Maven / Gradle / Ivy

Go to download

HyCube is a distributed hash table based on a hierarchical hypercube geometry, employing a novel variable metric adopting the Steinhaus transform.

There is a newer version: 1.0.5
Show newest version
package net.hycube.transport;

public class NetworkNodePointerException extends Exception {

	/**
	 * 
	 */
	private static final long serialVersionUID = 5993474913596414412L;

	public NetworkNodePointerException() {

	}

	public NetworkNodePointerException(String msg) {
		super(msg);
	}

	public NetworkNodePointerException(Throwable e) {
		super(e);
	}

	public NetworkNodePointerException(String msg, Throwable e) {
		super(msg, e);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy