From 8a468b367bcdf0a9488a519af36c80653196db10 Mon Sep 17 00:00:00 2001 From: Janne Valkealahti Date: Sun, 8 Feb 2015 08:39:52 +0000 Subject: [PATCH] Fix typo --- .../springframework/statemachine/StateMachineException.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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);