diff options
author | Mark Spruiell <mes@zeroc.com> | 2008-01-30 16:07:30 -0800 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2008-01-30 16:07:30 -0800 |
commit | b9b4aae48e799e60204577256fc11ff3951186aa (patch) | |
tree | bebe55f6e3bbbf03eb4390f984491ae1a3c3d7e6 /cs/test/IceBox/configuration/Client.cs | |
parent | bug 1388 - ICE_CONFIG in Java (diff) | |
download | ice-b9b4aae48e799e60204577256fc11ff3951186aa.tar.bz2 ice-b9b4aae48e799e60204577256fc11ff3951186aa.tar.xz ice-b9b4aae48e799e60204577256fc11ff3951186aa.zip |
bug 2274 - review exception catching in Java/C# tests
Diffstat (limited to 'cs/test/IceBox/configuration/Client.cs')
-rw-r--r-- | cs/test/IceBox/configuration/Client.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cs/test/IceBox/configuration/Client.cs b/cs/test/IceBox/configuration/Client.cs index 529ba1ecde9..b960674d51c 100644 --- a/cs/test/IceBox/configuration/Client.cs +++ b/cs/test/IceBox/configuration/Client.cs @@ -37,13 +37,13 @@ public class Client communicator = Ice.Util.initialize(ref args); status = run(args, communicator); } - catch (Ice.LocalException ex) + catch(System.Exception ex) { System.Console.Error.WriteLine(ex); status = 1; } - if (communicator != null) + if(communicator != null) { try { |