FinalStateMachine/src/main/java/me/bvn13/fsm/exceptions/BrokenTransitionException.java

11 lines
277 B
Java

package me.bvn13.fsm.exceptions;
/**
* is thrown if there are no further states from the current one
*/
public class BrokenTransitionException extends FsmException {
public BrokenTransitionException(String from) {
super("Broken transition from: "+from);
}
}