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 | 948598e7f87cebae06e55ce240ee5437a24765e1 (patch) | |
| tree | f2b23b067d74831c74bc4ea2ca8655c5f94e07df /qpid/cpp/src/tests/perftest.cpp | |
| parent | acd260bce099be36b879826a0921daf9cb2fe140 (diff) | |
| download | qpid-python-948598e7f87cebae06e55ce240ee5437a24765e1.tar.gz | |
Fix exception handling bug.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@599103 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/perftest.cpp')
| -rw-r--r-- | qpid/cpp/src/tests/perftest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/perftest.cpp b/qpid/cpp/src/tests/perftest.cpp index 958c2b5cb1..da0eaf0f8a 100644 --- a/qpid/cpp/src/tests/perftest.cpp +++ b/qpid/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; |
