diff options
author | Alan Conway <aconway@apache.org> | 2007-11-28 19:17:37 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2007-11-28 19:17:37 +0000 |
commit | c2a5e2adaf93c23fb619a939a3aff8f600f4484d (patch) | |
tree | a056660c53e2910a7c92384b33084163801596c1 /cpp/src/tests/perftest.cpp | |
parent | 2b1b179702863e8e6d077c025f5244eaa461a990 (diff) | |
download | qpid-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.cpp | 2 |
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; |