summaryrefslogtreecommitdiff
path: root/jurt
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2004-02-26 12:04:15 +0000
committerKurt Zenker <kz@openoffice.org>2004-02-26 12:04:15 +0000
commit68db6a7dedce9b1ee1ea59fa25d10fea8d171a0a (patch)
tree955466fb42609279924366b650b02f4383c15a54 /jurt
parent93fb34d9cfb7e9049c9882f66609ac9a1f40b4fa (diff)
INTEGRATION: CWS sb13 (1.11.82); FILE MERGED
2004/02/04 11:19:26 sb 1.11.82.1: #i25055# Improve stack traces of exceptions thrown over Java URP bridge.
Diffstat (limited to 'jurt')
-rw-r--r--jurt/com/sun/star/lib/uno/protocols/urp/Unmarshal.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/jurt/com/sun/star/lib/uno/protocols/urp/Unmarshal.java b/jurt/com/sun/star/lib/uno/protocols/urp/Unmarshal.java
index 044a3b5acbf1..ba204b6a524e 100644
--- a/jurt/com/sun/star/lib/uno/protocols/urp/Unmarshal.java
+++ b/jurt/com/sun/star/lib/uno/protocols/urp/Unmarshal.java
@@ -2,9 +2,9 @@
*
* $RCSfile: Unmarshal.java,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: hr $ $Date: 2003-03-26 12:33:00 $
+ * last change: $Author: kz $ $Date: 2004-02-26 13:04:15 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -313,7 +313,7 @@ class Unmarshal implements IUnmarshal {
Constructor constructor = iTypeDescription.getZClass().getConstructor(new Class[]{String.class});
Throwable throwable = (Throwable)constructor.newInstance(new Object[]{message});
-
+ throwable.fillInStackTrace();
readStruct(iTypeDescription, throwable);
if(DEBUG) System.err.println("##### " + getClass().getName() + ".readThrowable:" + throwable);