summaryrefslogtreecommitdiff
path: root/cpp/src/IceXML/StreamI.cpp
diff options
context:
space:
mode:
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);