diff --git a/spring-statemachine-core/src/main/java/org/springframework/statemachine/StateMachineException.java b/spring-statemachine-core/src/main/java/org/springframework/statemachine/StateMachineException.java index fbd5b0d3..5fe985da 100644 --- a/spring-statemachine-core/src/main/java/org/springframework/statemachine/StateMachineException.java +++ b/spring-statemachine-core/src/main/java/org/springframework/statemachine/StateMachineException.java @@ -16,7 +16,6 @@ package org.springframework.statemachine; import java.io.IOException; -import java.rmi.RemoteException; import org.springframework.dao.NonTransientDataAccessException; @@ -33,7 +32,7 @@ public class StateMachineException extends NonTransientDataAccessException { /** * Constructs a generic StateMachineException. * - * @param e the {@link RemoteException} + * @param e the {@link IOException} */ public StateMachineException(IOException e) { super(e.getMessage(), e);