Added missing space in exception message.

This commit is contained in:
Erwin Vervaet
2007-04-04 07:36:48 +00:00
parent 77708f4a00
commit 77168c8528

View File

@@ -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);
}