summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/assert.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/qpid/assert.cpp')
-rw-r--r--cpp/src/qpid/assert.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/assert.cpp b/cpp/src/qpid/assert.cpp
index c2cd84d444..82db22b0cc 100644
--- a/cpp/src/qpid/assert.cpp
+++ b/cpp/src/qpid/assert.cpp
@@ -32,7 +32,7 @@ void assert_fail(char const * expr, char const * function, char const * file, lo
msg << "Internal error: " << expr << " in function " << function
<< "(" << file << ":" << line << ")";
#ifdef NDEBUG
- throw InternalErrorException(msg);
+ throw framing::InternalErrorException(msg);
#else
std::cerr << msg << std::endl;
abort();