net.hycube.core.NodeIdOperationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hycube Show documentation
Show all versions of hycube Show documentation
HyCube is a distributed hash table based on a hierarchical hypercube geometry, employing a novel variable metric adopting the Steinhaus transform.
/**
*
*/
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