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/inheritance/Server.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/inheritance/Server.java')
-rw-r--r-- | java/test/Ice/inheritance/Server.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/test/Ice/inheritance/Server.java b/java/test/Ice/inheritance/Server.java index 524385b4c00..6ca4ff42c2a 100644 --- a/java/test/Ice/inheritance/Server.java +++ b/java/test/Ice/inheritance/Server.java @@ -33,7 +33,7 @@ public class Server communicator = Ice.Util.initialize(args); status = run(args, communicator); } - catch(Ice.LocalException ex) + catch(Ice.RuntimeException ex) { ex.printStackTrace(); status = 1; @@ -45,7 +45,7 @@ public class Server { communicator.destroy(); } - catch(Ice.LocalException ex) + catch(Ice.RuntimeException ex) { ex.printStackTrace(); status = 1; |