summaryrefslogtreecommitdiff
path: root/java/test/Ice/exceptions/Collocated.java
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2002-09-20 05:55:29 +0000
committerMichi Henning <michi@zeroc.com>2002-09-20 05:55:29 +0000
commitb56ebf2776fbd2b6dcb9b793c03511e49b265053 (patch)
treed58e5e9b5e95d6b640c36447bc594684c1b255f1 /java/test/Ice/exceptions/Collocated.java
parentRemoved idempotent qualifier from destroy operations. (diff)
downloadice-b56ebf2776fbd2b6dcb9b793c03511e49b265053.tar.bz2
ice-b56ebf2776fbd2b6dcb9b793c03511e49b265053.tar.xz
ice-b56ebf2776fbd2b6dcb9b793c03511e49b265053.zip
Renamed Ice::LocalException to Ice::RuntimeException.
Diffstat (limited to 'java/test/Ice/exceptions/Collocated.java')
-rw-r--r--java/test/Ice/exceptions/Collocated.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/test/Ice/exceptions/Collocated.java b/java/test/Ice/exceptions/Collocated.java
index 40974d85987..abde7f70098 100644
--- a/java/test/Ice/exceptions/Collocated.java
+++ b/java/test/Ice/exceptions/Collocated.java
@@ -34,7 +34,7 @@ public class Collocated
communicator = Ice.Util.initialize(args);
status = run(args, communicator);
}
- catch(Ice.LocalException ex)
+ catch(Ice.RuntimeException ex)
{
ex.printStackTrace();
status = 1;
@@ -46,7 +46,7 @@ public class Collocated
{
communicator.destroy();
}
- catch(Ice.LocalException ex)
+ catch(Ice.RuntimeException ex)
{
ex.printStackTrace();
status = 1;