You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2007/11/28 20:17:37 UTC

svn commit: r599103 - /incubator/qpid/trunk/qpid/cpp/src/tests/perftest.cpp

Author: aconway
Date: Wed Nov 28 11:17:37 2007
New Revision: 599103

URL: http://svn.apache.org/viewvc?rev=599103&view=rev
Log:

Fix exception handling bug.

Modified:
    incubator/qpid/trunk/qpid/cpp/src/tests/perftest.cpp

Modified: incubator/qpid/trunk/qpid/cpp/src/tests/perftest.cpp
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/src/tests/perftest.cpp?rev=599103&r1=599102&r2=599103&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/src/tests/perftest.cpp (original)
+++ incubator/qpid/trunk/qpid/cpp/src/tests/perftest.cpp Wed Nov 28 11:17:37 2007
@@ -509,7 +509,7 @@
         }
         return 0;
     }
-    catch (const qpid::Options::Exception& e) {
+    catch (const std::exception& e) {
         cout << endl << e.what() << endl; 
     }
     return 1;