net.hycube.environment.NodePropertiesException 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.environment;
public class NodePropertiesException extends Exception {
private static final long serialVersionUID = -951325947704849737L;
public NodePropertiesException() {
super();
}
public NodePropertiesException(String msg, Throwable e) {
super(msg, e);
}
public NodePropertiesException(String msg) {
super(msg);
}
public NodePropertiesException(Throwable e) {
super(e);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy