()
| 45 | } |
| 46 | |
| 47 | func (e InTransitionError) Error() string { |
| 48 | return "event " + e.Event + " inappropriate because previous transition did not complete" |
| 49 | } |
| 50 | |
| 51 | // NotInTransitionError is returned by FSM.Transition() when an asynchronous |
| 52 | // transition is not in progress. |
no outgoing calls