summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/convwatch/OfficePrint.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/convwatch/OfficePrint.java')
-rw-r--r--qadevOOo/runner/convwatch/OfficePrint.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/qadevOOo/runner/convwatch/OfficePrint.java b/qadevOOo/runner/convwatch/OfficePrint.java
index cc7867db015e..432620005573 100644
--- a/qadevOOo/runner/convwatch/OfficePrint.java
+++ b/qadevOOo/runner/convwatch/OfficePrint.java
@@ -767,14 +767,13 @@ public class OfficePrint {
}
catch(ConvWatchCancelException e)
{
- e.printStackTrace();
GlobalLogWriter.get().println(e.getMessage());
- throw new ConvWatchCancelException("Exception caught. Problem with MSOffice printer methods.");
+ throw new ConvWatchCancelException("Exception caught. Problem with MSOffice printer methods.", e);
}
catch(java.io.IOException e)
{
GlobalLogWriter.get().println(e.getMessage());
- throw new ConvWatchCancelException("IOException caught. Problem with MSOffice printer methods.");
+ throw new ConvWatchCancelException("IOException caught. Problem with MSOffice printer methods.", e);
}
bBack = true;
}