summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/helper
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/helper')
-rw-r--r--qadevOOo/runner/helper/ConfigHelper.java26
-rw-r--r--qadevOOo/runner/helper/StreamSimulator.java2
2 files changed, 14 insertions, 14 deletions
diff --git a/qadevOOo/runner/helper/ConfigHelper.java b/qadevOOo/runner/helper/ConfigHelper.java
index da873a59b97c..cfa61a3bf15a 100644
--- a/qadevOOo/runner/helper/ConfigHelper.java
+++ b/qadevOOo/runner/helper/ConfigHelper.java
@@ -212,18 +212,18 @@ public class ConfigHelper
xProp = UnoRuntime.queryInterface(
XPropertySet.class,
xSetCont.getByName(groupName));
- } catch (com.sun.star.container.NoSuchElementException e){
- throw new com.sun.star.uno.Exception(
+ } catch (com.sun.star.container.NoSuchElementException ex){
+ throw new com.sun.star.uno.Exception(ex,
"could not get group '" + groupName +
- "' from set '"+ setName +"':\n" + e.toString());
+ "' from set '"+ setName +"'");
}
try{
xProp.setPropertyValue(propName, propValue);
- } catch (com.sun.star.uno.Exception e) {
- throw new com.sun.star.uno.Exception(
+ } catch (com.sun.star.uno.Exception ex) {
+ throw new com.sun.star.uno.Exception(ex,
"could not set property '" + propName +
"' from group '"+ groupName +
- "' from set '"+ setName +"':\n" + e.toString());
+ "' from set '"+ setName +"'");
}
}
@@ -255,28 +255,28 @@ public class ConfigHelper
Object xGroup=xSetCont.getByName(group);
xGroupAccess = UnoRuntime.queryInterface(
XNameReplace.class,xGroup);
- } catch(com.sun.star.container.NoSuchElementException e) {
- throw new com.sun.star.uno.Exception(
+ } catch(com.sun.star.container.NoSuchElementException ex) {
+ throw new com.sun.star.uno.Exception(ex,
"could not get group '" + group +
- "' from set '"+ setName +"':\n" + e.toString());
+ "' from set '"+ setName +"'");
}
try {
Object xGroup=xGroupAccess.getByName(extGroup);
xExtGroupCont = UnoRuntime.queryInterface(
XNameContainer.class,xGroup);
- } catch(com.sun.star.container.NoSuchElementException e) {
- throw new com.sun.star.uno.Exception(
+ } catch(com.sun.star.container.NoSuchElementException ex) {
+ throw new com.sun.star.uno.Exception(ex,
"could not get extensilbe group '"+extGroup+
"' from group '"+ group +
- "' from set '"+ setName +"':\n" + e.toString());
+ "' from set '"+ setName +"'");
}
try {
xExtGroupCont.insertByName(propName, propValue);
}
catch(com.sun.star.container.ElementExistException e) {
- xExtGroupCont .replaceByName(propName, propValue);
+ xExtGroupCont.replaceByName(propName, propValue);
}
}
diff --git a/qadevOOo/runner/helper/StreamSimulator.java b/qadevOOo/runner/helper/StreamSimulator.java
index 1b53d4a9a492..7571ce6864cf 100644
--- a/qadevOOo/runner/helper/StreamSimulator.java
+++ b/qadevOOo/runner/helper/StreamSimulator.java
@@ -106,7 +106,7 @@ public class StreamSimulator implements com.sun.star.io.XInputStream ,
}
catch(com.sun.star.uno.Exception exUno)
{
- throw new com.sun.star.io.NotConnectedException("Could not open the file.");
+ throw new com.sun.star.io.NotConnectedException(exUno);
}
}