net.hycube.simulator.SimulatorServiceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hycube-simulator Show documentation
Show all versions of hycube-simulator Show documentation
HyCube Simulator is a container running multiple HyCube node instances, providing an interface for performing operations on individual nodes.
package net.hycube.simulator;
public class SimulatorServiceException extends Exception {
/**
*
*/
private static final long serialVersionUID = 5163973161226595610L;
public SimulatorServiceException() {
}
public SimulatorServiceException(String msg) {
super(msg);
}
public SimulatorServiceException(Throwable e) {
super(e);
}
public SimulatorServiceException(String msg, Throwable e) {
super(msg, e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy