summaryrefslogtreecommitdiff
path: root/cpp/src/tests/perftest.cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2007-11-28 19:17:37 +0000
committerAlan Conway <aconway@apache.org>2007-11-28 19:17:37 +0000
commitc2a5e2adaf93c23fb619a939a3aff8f600f4484d (patch)
treea056660c53e2910a7c92384b33084163801596c1 /cpp/src/tests/perftest.cpp
parent2b1b179702863e8e6d077c025f5244eaa461a990 (diff)
downloadqpid-python-c2a5e2adaf93c23fb619a939a3aff8f600f4484d.tar.gz
Fix exception handling bug.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@599103 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/perftest.cpp')
-rw-r--r--cpp/src/tests/perftest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/tests/perftest.cpp b/cpp/src/tests/perftest.cpp
index 958c2b5cb1..da0eaf0f8a 100644
--- a/cpp/src/tests/perftest.cpp
+++ b/cpp/src/tests/perftest.cpp
@@ -509,7 +509,7 @@ int main(int argc, char** argv) {
}
return 0;
}
- catch (const qpid::Options::Exception& e) {
+ catch (const std::exception& e) {
cout << endl << e.what() << endl;
}
return 1;