org.squirrelframework.foundation.exception.TransitionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of squirrel-foundation Show documentation
Show all versions of squirrel-foundation Show documentation
foundation module of squirrel framework which provided event driven infrastructure and a finite state machine implementation.
package org.squirrelframework.foundation.exception;
/**
*
* Transition Exception class
*
* @author Henry.He
*
*/
public class TransitionException extends SquirrelRuntimeException {
private static final long serialVersionUID = -3907699293556397027L;
public TransitionException(Throwable targetException, ErrorCodes errorCode, Object[] parameters) {
super(targetException, errorCode, parameters);
}
}