diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2010-04-09 21:46:19 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2010-04-09 21:46:19 +0000 |
| commit | dea0572f4b7af8020492ae192daeab078d524c5f (patch) | |
| tree | b2f630c8ec13f6e03ab768e6f0da5680da44cdab /qpid/cpp/include | |
| parent | a7678561156bf7d07f0b3701ae347db70d26e54d (diff) | |
| download | qpid-python-dea0572f4b7af8020492ae192daeab078d524c5f.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@932631 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/include')
| -rw-r--r-- | qpid/cpp/include/qpid/management/Buffer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qpid/cpp/include/qpid/management/Buffer.h b/qpid/cpp/include/qpid/management/Buffer.h index 81710171f5..c32494b8c0 100644 --- a/qpid/cpp/include/qpid/management/Buffer.h +++ b/qpid/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")) {} }; |
