Kaydet (Commit) cc376d87 authored tarafından Lionel Elie Mamane's avatar Lionel Elie Mamane

set java throwable cause argument (erroneously removed by previous commit)

Change-Id: Ib4516eec5e47d95d53dbb5002f7258514c93f2c9
üst 42b80922
......@@ -223,7 +223,7 @@ public class SOReportJobFactory
Writer result = new StringWriter();
PrintWriter printWriter = new PrintWriter(result);
e.printStackTrace(printWriter);
throw new com.sun.star.lang.WrappedTargetException(e.toString() + '\n' + result.toString(), this, null);
throw new com.sun.star.lang.WrappedTargetException(e, e.toString() + '\n' + result.toString(), this, null);
}
catch (java.lang.IncompatibleClassChangeError e)
{
......@@ -231,7 +231,7 @@ public class SOReportJobFactory
Writer result = new StringWriter();
PrintWriter printWriter = new PrintWriter(result);
e.printStackTrace(printWriter);
throw new com.sun.star.lang.WrappedTargetException(e.toString() + '\n' + result.toString(), this, null);
throw new com.sun.star.lang.WrappedTargetException(e, e.toString() + '\n' + result.toString(), this, null);
}
Thread.currentThread().setContextClassLoader(cl);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment