From 1badb17be0877bfc8f2423c739ffc85be8401ed5 Mon Sep 17 00:00:00 2001 From: Keith Donald Date: Thu, 5 Apr 2007 20:14:18 +0000 Subject: [PATCH] made exception message more specific --- .../webflow/executor/jsf/FlowExecutionHolderUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-webflow/src/main/java/org/springframework/webflow/executor/jsf/FlowExecutionHolderUtils.java b/spring-webflow/src/main/java/org/springframework/webflow/executor/jsf/FlowExecutionHolderUtils.java index 77772f81..65d86bef 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/executor/jsf/FlowExecutionHolderUtils.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/executor/jsf/FlowExecutionHolderUtils.java @@ -86,7 +86,7 @@ public class FlowExecutionHolderUtils { } else { throw new EvaluationException("No current FlowExecution bound to the Faces Context " - + "- was the current flow execution restored before any components referenced it? " + + "- was the current flow execution not restored before a view referenced it? " + "Has the flow execution ended or expired?"); } }