
io.fixprotocol.orchestra.states.StateMachineException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of state-machine Show documentation
Show all versions of state-machine Show documentation
Demonstration of state machine useage
The newest version!
package io.fixprotocol.orchestra.states;
public class StateMachineException extends Exception {
private static final long serialVersionUID = 3789612339273048280L;
public StateMachineException() {
}
public StateMachineException(String arg0) {
super(arg0);
}
public StateMachineException(Throwable cause) {
super(cause);
}
public StateMachineException(String message, Throwable cause) {
super(message, cause);
}
public StateMachineException(String message, Throwable cause, boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy