From 77168c8528678e85fea8722d68de85d9c8885607 Mon Sep 17 00:00:00 2001 From: Erwin Vervaet Date: Wed, 4 Apr 2007 07:36:48 +0000 Subject: [PATCH] Added missing space in exception message. --- .../continuation/SerializedFlowExecutionContinuation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-webflow/src/main/java/org/springframework/webflow/execution/repository/continuation/SerializedFlowExecutionContinuation.java b/spring-webflow/src/main/java/org/springframework/webflow/execution/repository/continuation/SerializedFlowExecutionContinuation.java index 20004d0d..b5eaec89 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/execution/repository/continuation/SerializedFlowExecutionContinuation.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/execution/repository/continuation/SerializedFlowExecutionContinuation.java @@ -104,7 +104,7 @@ public class SerializedFlowExecutionContinuation extends FlowExecutionContinuati catch (ClassNotFoundException e) { throw new ContinuationUnmarshalException( "ClassNotFoundException thrown deserializing the flow execution stored in this continuation -- " - + "This should not happen! Make sure there are no classloader issues." + + "This should not happen! Make sure there are no classloader issues. " + "For example, perhaps the Web Flow system is being loaded by a classloader " + "that is a parent of the classloader loading application classes?", e); }