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 | 2d7769081b5fb48103bdf697aa44920e0d48cfb9 (patch) | |
| tree | 3f0480eb5fa41d8a3f2c1a5bf52724deb152271b /cpp/include | |
| parent | 2d6cc61904de47eeb28c2c49b5a32e9df50f4f79 (diff) | |
| download | qpid-python-2d7769081b5fb48103bdf697aa44920e0d48cfb9.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/include')
| -rw-r--r-- | cpp/include/qpid/management/Buffer.h | 6 |
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")) {} }; |
