summaryrefslogtreecommitdiff
path: root/cpp/src/IceXML/StreamI.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/IceXML/StreamI.cpp
parentcomments (diff)
downloadice-364c465628189a4f3dee6eac54ff48825c48e681.tar.bz2
ice-364c465628189a4f3dee6eac54ff48825c48e681.tar.xz
ice-364c465628189a4f3dee6eac54ff48825c48e681.zip
removed spaces
Diffstat (limited to 'cpp/src/IceXML/StreamI.cpp')
-rw-r--r--cpp/src/IceXML/StreamI.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/IceXML/StreamI.cpp b/cpp/src/IceXML/StreamI.cpp
index 9848d14a7ab..f5fa98f537e 100644
--- a/cpp/src/IceXML/StreamI.cpp
+++ b/cpp/src/IceXML/StreamI.cpp
@@ -183,7 +183,7 @@ IceXML::StreamI::StreamI(const ::Ice::CommunicatorPtr& communicator, std::ostrea
{
XMLPlatformUtils::Initialize();
}
- catch (const XMLException& ex)
+ catch(const XMLException& ex)
{
string err = "xerces: initialize failed: ";
err += toString(ex.getMessage());
@@ -207,7 +207,7 @@ IceXML::StreamI::StreamI(const ::Ice::CommunicatorPtr& communicator, std::istrea
{
XMLPlatformUtils::Initialize();
}
- catch (const XMLException& ex)
+ catch(const XMLException& ex)
{
string err = "xerces: initialize failed: ";
err += toString(ex.getMessage());
@@ -265,14 +265,14 @@ IceXML::StreamI::StreamI(const ::Ice::CommunicatorPtr& communicator, std::istrea
errorsOccured = true;
}
}
- catch (const XMLException& ex)
+ catch(const XMLException& ex)
{
ostringstream os;
os << "xerces: parsing error: " << toString(ex.getMessage());
logger->error(os.str());
errorsOccured = true;
}
- catch (const DOM_DOMException& ex)
+ catch(const DOM_DOMException& ex)
{
ostringstream os;
os << "xerces: DOM parsing error: " << toString(ex.msg);