diff options
author | Michi Henning <michi@zeroc.com> | 2002-09-20 05:55:29 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2002-09-20 05:55:29 +0000 |
commit | b56ebf2776fbd2b6dcb9b793c03511e49b265053 (patch) | |
tree | d58e5e9b5e95d6b640c36447bc594684c1b255f1 /java/test/Freeze/dbmap/Client.java | |
parent | Removed idempotent qualifier from destroy operations. (diff) | |
download | ice-b56ebf2776fbd2b6dcb9b793c03511e49b265053.tar.bz2 ice-b56ebf2776fbd2b6dcb9b793c03511e49b265053.tar.xz ice-b56ebf2776fbd2b6dcb9b793c03511e49b265053.zip |
Renamed Ice::LocalException to Ice::RuntimeException.
Diffstat (limited to 'java/test/Freeze/dbmap/Client.java')
-rw-r--r-- | java/test/Freeze/dbmap/Client.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/test/Freeze/dbmap/Client.java b/java/test/Freeze/dbmap/Client.java index 07e8485c077..de3f92ec40e 100644 --- a/java/test/Freeze/dbmap/Client.java +++ b/java/test/Freeze/dbmap/Client.java @@ -241,7 +241,7 @@ public class Client System.err.println(args[0] + ": " + ex + ": " + ex.message); status = 1; } - catch(Ice.LocalException ex) + catch(Ice.RuntimeException ex) { System.err.println(args[0] + ": " + ex); status = 1; @@ -265,7 +265,7 @@ public class Client System.err.println(args[0] + ": " + ex + ": " + ex.message); status = 1; } - catch(Ice.LocalException ex) + catch(Ice.RuntimeException ex) { System.err.println(args[0] + ": " + ex); status = 1; @@ -289,7 +289,7 @@ public class Client System.err.println(args[0] + ": " + ex + ": " + ex.message); status = 1; } - catch(Ice.LocalException ex) + catch(Ice.RuntimeException ex) { System.err.println(args[0] + ": " + ex); status = 1; |