summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/mod/_dbaccess/ORowSet.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/mod/_dbaccess/ORowSet.java')
-rw-r--r--qadevOOo/tests/java/mod/_dbaccess/ORowSet.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/qadevOOo/tests/java/mod/_dbaccess/ORowSet.java b/qadevOOo/tests/java/mod/_dbaccess/ORowSet.java
index be7877107b28..dbb72469ea0a 100644
--- a/qadevOOo/tests/java/mod/_dbaccess/ORowSet.java
+++ b/qadevOOo/tests/java/mod/_dbaccess/ORowSet.java
@@ -265,13 +265,12 @@ public class ORowSet extends TestCase {
}
catch(java.sql.SQLException e)
{
- e.printStackTrace(log);
- throw new StatusException(Status.failed("Couldn't " +
+ throw new StatusException(e, Status.failed("Couldn't " +
" init test table. SQLException..."));
}
catch(java.lang.ClassNotFoundException e)
{
- throw new StatusException(Status.failed("Couldn't " +
+ throw new StatusException(e, Status.failed("Couldn't " +
"register mysql driver"));
}
}