From 8cec07a33483ed37c113ec3eb37d4ca742fb0563 Mon Sep 17 00:00:00 2001 From: Erwin Vervaet Date: Sun, 1 Apr 2007 06:42:57 +0000 Subject: [PATCH] Fixed JDK 1.3 compatibility issue. --- .../webflow/executor/support/ResponseInstructionHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-webflow/src/main/java/org/springframework/webflow/executor/support/ResponseInstructionHandler.java b/spring-webflow/src/main/java/org/springframework/webflow/executor/support/ResponseInstructionHandler.java index 9c5e3881..d4a7620f 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/executor/support/ResponseInstructionHandler.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/executor/support/ResponseInstructionHandler.java @@ -100,7 +100,7 @@ public abstract class ResponseInstructionHandler { } catch (Exception e) { throw new RuntimeException( - "Unexpected exception handling response instruction " + responseInstruction, e); + "Unexpected exception handling response instruction " + responseInstruction + ": " + e); } }