diff options
Diffstat (limited to 'cpp/src/IcePatch/Server.cpp')
-rw-r--r-- | cpp/src/IcePatch/Server.cpp | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/cpp/src/IcePatch/Server.cpp b/cpp/src/IcePatch/Server.cpp index 6bc7de74198..ad708191b18 100644 --- a/cpp/src/IcePatch/Server.cpp +++ b/cpp/src/IcePatch/Server.cpp @@ -198,20 +198,13 @@ IcePatch::Updater::run() // Just loop if we're busy. // } - catch(const ConnectFailedException&) + catch(const Exception&) { // - // This exception can be raised if the adapter is shutdown - // while this thread is still running. In such case, we - // terminate this thread. + // Bail out on any other exception. // break; } - catch(const Exception& ex) - { - Error out(_logger); - out << "exception during update:\n" << ex; - } if(_destroy) { |