diff options
-rw-r--r-- | cpp/src/qpid/Exception.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/Exception.cpp b/cpp/src/qpid/Exception.cpp index 5c6867a4f9..1c3636e8c6 100644 --- a/cpp/src/qpid/Exception.cpp +++ b/cpp/src/qpid/Exception.cpp @@ -39,7 +39,7 @@ Exception::Exception(const std::string& msg) throw() : message(msg) { Exception::~Exception() throw() {} -std::string Exception::getPrefix() const { return typeid(*this).name(); } +std::string Exception::getPrefix() const { return "Exception"; } const char* Exception::what() const throw() { if (whatStr.empty()) |