summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2010-04-09 21:46:19 +0000
committerAndrew Stitcher <astitcher@apache.org>2010-04-09 21:46:19 +0000
commita882ca2a83d7bfd81add2e500abfa0ee11327770 (patch)
tree3f0480eb5fa41d8a3f2c1a5bf52724deb152271b /cpp
parentfcc2b93fc53edfc3a02e33b2fa21da1456415a5d (diff)
downloadqpid-python-a882ca2a83d7bfd81add2e500abfa0ee11327770.tar.gz
Make qmf generated code use new qpid::types::Exception as base for
buffer exception. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@932631 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r--cpp/include/qpid/management/Buffer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/include/qpid/management/Buffer.h b/cpp/include/qpid/management/Buffer.h
index 81710171f5..c32494b8c0 100644
--- a/cpp/include/qpid/management/Buffer.h
+++ b/cpp/include/qpid/management/Buffer.h
@@ -19,8 +19,8 @@
* under the License.
*
*/
-#include "qpid/Exception.h"
#include "qpid/CommonImportExport.h"
+#include "qpid/types/Exception.h"
#include "qpid/types/Variant.h"
#include <string>
@@ -31,8 +31,8 @@ namespace framing {
namespace management {
-struct OutOfBounds : qpid::Exception {
- OutOfBounds() : qpid::Exception(std::string("Out of Bounds")) {}
+struct OutOfBounds : qpid::types::Exception {
+ OutOfBounds() : qpid::types::Exception(std::string("Out of Bounds")) {}
};