diff --git a/spring-statemachine-core/src/main/java/org/springframework/statemachine/config/configurers/StateConfigurer.java b/spring-statemachine-core/src/main/java/org/springframework/statemachine/config/configurers/StateConfigurer.java index 71168b27..1f58ea62 100644 --- a/spring-statemachine-core/src/main/java/org/springframework/statemachine/config/configurers/StateConfigurer.java +++ b/spring-statemachine-core/src/main/java/org/springframework/statemachine/config/configurers/StateConfigurer.java @@ -126,6 +126,7 @@ public interface StateConfigurer extends * * @param state the state * @param action the state action + * @param error action that will be called if any unexpected exception is thrown by the action. * @return configurer for chaining */ StateConfigurer stateDo(S state, Action action, Action error); @@ -171,6 +172,7 @@ public interface StateConfigurer extends * * @param state the state * @param action the state entry action + * @param error action that will be called if any unexpected exception is thrown by the action. * @return configurer for chaining * @see #state(Object, Action, Action) */ @@ -196,6 +198,7 @@ public interface StateConfigurer extends * * @param state the state * @param action the state entry action + * @param error action that will be called if any unexpected exception is thrown by the action. * @return configurer for chaining * @see #state(Object, Action, Action) */