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/Ice/facets/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/Ice/facets/Client.java')
-rw-r--r-- | java/test/Ice/facets/Client.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/test/Ice/facets/Client.java b/java/test/Ice/facets/Client.java index e700d7004d0..d1127b22c3c 100644 --- a/java/test/Ice/facets/Client.java +++ b/java/test/Ice/facets/Client.java @@ -29,7 +29,7 @@ public class Client communicator = Ice.Util.initialize(args); status = run(args, communicator); } - catch(Ice.LocalException ex) + catch(Ice.RuntimeException ex) { ex.printStackTrace(); status = 1; @@ -41,7 +41,7 @@ public class Client { communicator.destroy(); } - catch(Ice.LocalException ex) + catch(Ice.RuntimeException ex) { ex.printStackTrace(); status = 1; |