summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/graphical/MSOfficePostscriptCreator.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/graphical/MSOfficePostscriptCreator.java')
-rw-r--r--qadevOOo/runner/graphical/MSOfficePostscriptCreator.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/qadevOOo/runner/graphical/MSOfficePostscriptCreator.java b/qadevOOo/runner/graphical/MSOfficePostscriptCreator.java
index 6133094ece6d..a5c1667e7eb1 100644
--- a/qadevOOo/runner/graphical/MSOfficePostscriptCreator.java
+++ b/qadevOOo/runner/graphical/MSOfficePostscriptCreator.java
@@ -89,14 +89,13 @@ public class MSOfficePostscriptCreator implements IOffice
}
catch(OfficeException e)
{
- e.printStackTrace();
GlobalLogWriter.println(e.getMessage());
- throw new OfficeException("Exception caught. Problem with MSOffice printer methods.");
+ throw new OfficeException("Exception caught. Problem with MSOffice printer methods.", e);
}
catch(java.io.IOException e)
{
GlobalLogWriter.println(e.getMessage());
- throw new OfficeException("IOException caught. Problem with MSOffice printer methods.");
+ throw new OfficeException("IOException caught. Problem with MSOffice printer methods.", e);
}
}
@@ -258,7 +257,7 @@ public class MSOfficePostscriptCreator implements IOffice
}
catch (IndexOutOfBoundsException e)
{
- throw new WrongEnvironmentException("Given list is too short.");
+ throw new WrongEnvironmentException("Given list is too short.", e);
}
}