diff options
author | Matthew Newhook <matthew@zeroc.com> | 2005-10-26 03:45:42 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2005-10-26 03:45:42 +0000 |
commit | 2e33fccf0b432fc3000268cf494d2e03df0f597c (patch) | |
tree | 051e4b1fa90553e0b1ccb057e63c46aeacec5c9f /java/src/IceBox/ServiceManagerI.java | |
parent | sync ConnectionMonitor with java/C# (diff) | |
download | ice-2e33fccf0b432fc3000268cf494d2e03df0f597c.tar.bz2 ice-2e33fccf0b432fc3000268cf494d2e03df0f597c.tar.xz ice-2e33fccf0b432fc3000268cf494d2e03df0f597c.zip |
cleanup.
Diffstat (limited to 'java/src/IceBox/ServiceManagerI.java')
-rw-r--r-- | java/src/IceBox/ServiceManagerI.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/java/src/IceBox/ServiceManagerI.java b/java/src/IceBox/ServiceManagerI.java index d9293bf9e1d..d4eebb571a3 100644 --- a/java/src/IceBox/ServiceManagerI.java +++ b/java/src/IceBox/ServiceManagerI.java @@ -327,7 +327,6 @@ public class ServiceManagerI extends _ServiceManagerDisp { info.service.start(service, communicator, serviceArgs); } - //catch(Exception ex) catch(Throwable ex) { if(info.communicator != null) @@ -377,7 +376,7 @@ public class ServiceManagerI extends _ServiceManagerDisp { throw ex; } - catch(Throwable ex)//java.lang.Exception ex) + catch(Throwable ex) { FailureException e = new FailureException(); e.reason = "ServiceManager: exception while starting service " + service + ": " + ex; |