summaryrefslogtreecommitdiff
path: root/cpp/src/IceStorm/Parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceStorm/Parser.cpp')
-rw-r--r--cpp/src/IceStorm/Parser.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/cpp/src/IceStorm/Parser.cpp b/cpp/src/IceStorm/Parser.cpp
index ce7b7bf95bc..8957864f8dc 100644
--- a/cpp/src/IceStorm/Parser.cpp
+++ b/cpp/src/IceStorm/Parser.cpp
@@ -46,13 +46,14 @@ public:
}
virtual
- ~UnknownManagerException() throw()
+ ~UnknownManagerException() ICE_NOEXCEPT
{
}
+
virtual string
- ice_name() const
+ ice_id() const
{
- return "UnknownManagerException";
+ return "::UnknownManagerException";
}
virtual Exception*
@@ -334,7 +335,7 @@ Parser::replica(const list<string>& args)
}
catch(const Exception& ex)
{
- cout << p->id << ": " << ex.ice_name() << endl;
+ cout << p->id << ": " << ex.ice_id() << endl;
}
}
}