summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/reportbuilder
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-10-16 12:17:47 +0200
committerNoel Grandin <noel@peralex.com>2014-10-16 12:27:14 +0200
commitb2f69f626409442d1f0ca5049b946946ce9b01d8 (patch)
treefdd7bde284b00b3fbbc8ed62b8b35da6097bb281 /wizards/com/sun/star/wizards/reportbuilder
parent5cba8d44cabc3cbb18648efc9d8658d471b257e7 (diff)
java: when rethrowing, store the original exception
Change-Id: I14666493e72da177fcfff1895ef3206f0e13cc01
Diffstat (limited to 'wizards/com/sun/star/wizards/reportbuilder')
-rw-r--r--wizards/com/sun/star/wizards/reportbuilder/layout/DesignTemplate.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/wizards/com/sun/star/wizards/reportbuilder/layout/DesignTemplate.java b/wizards/com/sun/star/wizards/reportbuilder/layout/DesignTemplate.java
index 2315ea5bead9..02548d0c7bc6 100644
--- a/wizards/com/sun/star/wizards/reportbuilder/layout/DesignTemplate.java
+++ b/wizards/com/sun/star/wizards/reportbuilder/layout/DesignTemplate.java
@@ -276,7 +276,7 @@ public class DesignTemplate
{
// this should not happen
a = null;
- throw new java.lang.RuntimeException(e.getMessage());
+ throw new java.lang.RuntimeException(e);
}
catch (com.sun.star.uno.Exception e)
{