diff options
author | Bernard Normier <bernard@zeroc.com> | 2003-09-30 02:23:10 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2003-09-30 02:23:10 +0000 |
commit | 9d8b924dd0d2971e359beca9a7b10720b08a7e0d (patch) | |
tree | 234fc0bcd1d91bf1a991691c7c8e9631a871c474 /java/test/Freeze/dbmap/Client.java | |
parent | Removed DB, cleaned up configuration (diff) | |
download | ice-9d8b924dd0d2971e359beca9a7b10720b08a7e0d.tar.bz2 ice-9d8b924dd0d2971e359beca9a7b10720b08a7e0d.tar.xz ice-9d8b924dd0d2971e359beca9a7b10720b08a7e0d.zip |
Removed DB, cleaned up configuration
Diffstat (limited to 'java/test/Freeze/dbmap/Client.java')
-rw-r--r-- | java/test/Freeze/dbmap/Client.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/java/test/Freeze/dbmap/Client.java b/java/test/Freeze/dbmap/Client.java index 84b3b2f8a63..d8dcb16caf3 100644 --- a/java/test/Freeze/dbmap/Client.java +++ b/java/test/Freeze/dbmap/Client.java @@ -42,7 +42,7 @@ public class Client } break; } - catch(DBDeadlockException ex) + catch(DeadlockException ex) { // System.err.print("r"); // @@ -110,7 +110,7 @@ public class Client break; } - catch(DBDeadlockException ex) + catch(DeadlockException ex) { // System.err.print("w"); // @@ -164,7 +164,7 @@ public class Client private static void populateDB(Freeze.Connection connection, java.util.Map m) - throws DBException + throws DatabaseException { int length = alphabet.length(); @@ -181,7 +181,7 @@ public class Client tx.commit(); break; // for(;;) } - catch(Freeze.DBDeadlockException dx) + catch(Freeze.DeadlockException dx) { length = length / 2; // System.err.print("t"); @@ -201,7 +201,7 @@ public class Client private static int run(String[] args, Ice.Communicator communicator, String envName, String dbName) - throws DBException + throws DatabaseException { Freeze.Connection connection = Freeze.Util.createConnection(communicator, envName); @@ -502,7 +502,7 @@ public class Client System.out.println("testing encoding..."); status = run(args, communicator, envName, "binary"); } - catch(DBException ex) + catch(DatabaseException ex) { System.err.println(args[0] + ": " + ex + ": " + ex.message); status = 1; |