ru.yandex.qatools.fsm.FSMException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yatomata Show documentation
Show all versions of yatomata Show documentation
Yet another finite state machine implementation
package ru.yandex.qatools.fsm;
/**
* @author Ilya Sadykov (mailto: [email protected])
*/
public class FSMException extends Exception {
public FSMException(String message) {
super(message);
}
public FSMException(String message, Throwable cause) {
super(message, cause);
}
}