1 10 11 package com.triactive.jdo.state; 12 13 import javax.jdo.JDOFatalInternalException; 14 15 16 24 25 public class IllegalStateTransitionException extends JDOFatalInternalException 26 { 27 34 35 public IllegalStateTransitionException(LifeCycleState state, String transition, StateManagerImpl sm) 36 { 37 super("An illegal " + transition + " transition was attempted from the " + state + " state, sm = " + sm); 38 } 39 } 40 | Popular Tags |