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

net.hycube.core.NodeIdOperationException 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.core;

/**
 * @author Artur Olszak
 *
 * Exception thrown when an error occurs during perfirmin operations on NodeID objects
 */
public class NodeIdOperationException extends RuntimeException {

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

	/**
	 * 
	 */
	public NodeIdOperationException() {
		super();
	}

	/**
	 * @param arg0
	 */
	public NodeIdOperationException(String arg0) {
		super(arg0);
	}

	/**
	 * @param arg0
	 */
	public NodeIdOperationException(Throwable arg0) {
		super(arg0);
	}

	/**
	 * @param arg0
	 * @param arg1
	 */
	public NodeIdOperationException(String arg0, Throwable arg1) {
		super(arg0, arg1);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy