summaryrefslogtreecommitdiff
path: root/java/test/Freeze/oldevictor/Client.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/test/Freeze/oldevictor/Client.java')
-rw-r--r--java/test/Freeze/oldevictor/Client.java10
1 files changed, 6 insertions, 4 deletions
diff --git a/java/test/Freeze/oldevictor/Client.java b/java/test/Freeze/oldevictor/Client.java
index c6cd90734f6..c52145d07c3 100644
--- a/java/test/Freeze/oldevictor/Client.java
+++ b/java/test/Freeze/oldevictor/Client.java
@@ -109,11 +109,13 @@ public class Client
catch(Ice.LocalException e)
{
System.err.println("Caught unexpected : " + e.toString());
+ e.printStackTrace();
test(false);
return;
}
catch(Exception e)
{
+ e.printStackTrace();
test(false);
return;
}
@@ -877,22 +879,22 @@ public class Client
communicator = Ice.Util.initialize(args);
status = run(args, communicator);
}
- catch(Ice.LocalException ex)
+ catch(Test.AlreadyRegisteredException ex)
{
ex.printStackTrace();
status = 1;
}
- catch(Test.AlreadyRegisteredException ex)
+ catch(Test.NotRegisteredException ex)
{
ex.printStackTrace();
status = 1;
}
- catch(Test.NotRegisteredException ex)
+ catch(Test.EvictorDeactivatedException ex)
{
ex.printStackTrace();
status = 1;
}
- catch(Test.EvictorDeactivatedException ex)
+ catch(Exception ex)
{
ex.printStackTrace();
status = 1;