@@ -246,7 +246,7 @@ NodeRef XMLParser::parseNode(const tinyxml2::XMLElement* xmlNode)
246246 node->setName (name_);
247247 }
248248 }
249- catch (const Exception& exception)
249+ catch (const Exception& exception)
250250 {
251251 if (name_.empty ())
252252 {
@@ -275,7 +275,7 @@ NodeRef XMLParser::parseNode(const tinyxml2::XMLElement* xmlNode)
275275 {
276276 addDynamicField (node, xmlChild);
277277 }
278- catch (const Exception& exception)
278+ catch (const Exception& exception)
279279 {
280280 if (name_.empty ())
281281 {
@@ -293,7 +293,7 @@ NodeRef XMLParser::parseNode(const tinyxml2::XMLElement* xmlNode)
293293 {
294294 parseNodeField (node, xmlChild);
295295 }
296- catch (const Exception& exception)
296+ catch (const Exception& exception)
297297 {
298298 Log::warning () << exception.what ();
299299 }
@@ -302,7 +302,7 @@ NodeRef XMLParser::parseNode(const tinyxml2::XMLElement* xmlNode)
302302 xmlChild = xmlChild->NextSiblingElement ();
303303 }
304304 }
305- catch (const Exception& exception)
305+ catch (const Exception& exception)
306306 {
307307 if (name_.empty ())
308308 {
@@ -428,7 +428,7 @@ void XMLParser::parseRoute(const tinyxml2::XMLElement* xmlNode)
428428
429429 startNode->addConnection (startFieldName, targetNode->id (), targetFieldName);
430430 }
431- catch (const Exception& exception)
431+ catch (const Exception& exception)
432432 {
433433 Log::warning () << " Failed to establish a ROUTE: " << exception.what ();
434434 }
0 commit comments