summaryrefslogtreecommitdiff
path: root/cpp/src/IcePatch/Server.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-06-25 18:03:20 +0000
committerMarc Laukien <marc@zeroc.com>2002-06-25 18:03:20 +0000
commit364c465628189a4f3dee6eac54ff48825c48e681 (patch)
treea7d51101d0fdfef43601b48965c2935059e617b6 /cpp/src/IcePatch/Server.cpp
parentcomments (diff)
downloadice-364c465628189a4f3dee6eac54ff48825c48e681.tar.bz2
ice-364c465628189a4f3dee6eac54ff48825c48e681.tar.xz
ice-364c465628189a4f3dee6eac54ff48825c48e681.zip
removed spaces
Diffstat (limited to 'cpp/src/IcePatch/Server.cpp')
-rw-r--r--cpp/src/IcePatch/Server.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/IcePatch/Server.cpp b/cpp/src/IcePatch/Server.cpp
index e8b14415ad8..55e441a4484 100644
--- a/cpp/src/IcePatch/Server.cpp
+++ b/cpp/src/IcePatch/Server.cpp
@@ -178,18 +178,18 @@ IcePatch::Updater::run()
assert(topDesc);
cleanup(topDesc->directory->getContents());
}
- catch (const FileAccessException& ex)
+ catch(const FileAccessException& ex)
{
Error out(_adapter->getCommunicator()->getLogger());
out << "exception during update:\n" << ex << ":\n" << ex.reason;
}
- catch (const BusyException&)
+ catch(const BusyException&)
{
//
// Just loop if we're busy.
//
}
- catch (const ConnectFailedException&)
+ catch(const ConnectFailedException&)
{
//
// This exception can be raised if the adapter is shutdown
@@ -198,7 +198,7 @@ IcePatch::Updater::run()
//
break;
}
- catch (const Exception& ex)
+ catch(const Exception& ex)
{
Error out(_adapter->getCommunicator()->getLogger());
out << "exception during update:\n" << ex;