diff --git a/spring-webflow/src/main/java/org/springframework/webflow/mvc/view/AbstractMvcView.java b/spring-webflow/src/main/java/org/springframework/webflow/mvc/view/AbstractMvcView.java index a751caeb..5ba392b1 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/mvc/view/AbstractMvcView.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/mvc/view/AbstractMvcView.java @@ -123,7 +123,9 @@ public abstract class AbstractMvcView implements View { } catch (IOException e) { throw e; } catch (Exception e) { - throw new IllegalStateException("Unexpected exception occurred rendering view " + view, e); + IllegalStateException ise = new IllegalStateException("Exception occurred rendering view " + view); + ise.initCause(e); + throw ise; } }