diff options
| author | Alan Conway <aconway@apache.org> | 2010-05-14 13:54:56 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2010-05-14 13:54:56 +0000 |
| commit | e45595ccb655166dc9387f26b8fd9f2e018bdbd8 (patch) | |
| tree | 84cec478aab7151efc5365eb42227d75ee32f987 /qpid | |
| parent | 2d470f3f46eae7a36bcf6c81a3a0223c0edbd64c (diff) | |
| download | qpid-python-e45595ccb655166dc9387f26b8fd9f2e018bdbd8.tar.gz | |
Add missing "public" qualifier to exception inheritance.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@944259 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid')
| -rw-r--r-- | qpid/cpp/include/qpid/messaging/exceptions.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/qpid/cpp/include/qpid/messaging/exceptions.h b/qpid/cpp/include/qpid/messaging/exceptions.h index e20c1742c1..74393e2463 100644 --- a/qpid/cpp/include/qpid/messaging/exceptions.h +++ b/qpid/cpp/include/qpid/messaging/exceptions.h @@ -46,17 +46,17 @@ struct InvalidOptionString : public MessagingException QPID_CLIENT_EXTERN InvalidOptionString(const std::string& msg); }; -struct KeyError : MessagingException +struct KeyError : public MessagingException { QPID_CLIENT_EXTERN KeyError(const std::string&); }; -struct LinkError : MessagingException +struct LinkError : public MessagingException { QPID_CLIENT_EXTERN LinkError(const std::string&); }; -struct AddressError : LinkError +struct AddressError : public LinkError { QPID_CLIENT_EXTERN AddressError(const std::string&); }; @@ -88,62 +88,62 @@ struct MalformedAddress : public AddressError QPID_CLIENT_EXTERN MalformedAddress(const std::string& msg); }; -struct ReceiverError : LinkError +struct ReceiverError : public LinkError { QPID_CLIENT_EXTERN ReceiverError(const std::string&); }; -struct FetchError : ReceiverError +struct FetchError : public ReceiverError { QPID_CLIENT_EXTERN FetchError(const std::string&); }; -struct NoMessageAvailable : FetchError +struct NoMessageAvailable : public FetchError { QPID_CLIENT_EXTERN NoMessageAvailable(); }; -struct SenderError : LinkError +struct SenderError : public LinkError { QPID_CLIENT_EXTERN SenderError(const std::string&); }; -struct SendError : SenderError +struct SendError : public SenderError { QPID_CLIENT_EXTERN SendError(const std::string&); }; -struct TargetCapacityExceeded : SendError +struct TargetCapacityExceeded : public SendError { QPID_CLIENT_EXTERN TargetCapacityExceeded(const std::string&); }; -struct SessionError : MessagingException +struct SessionError : public MessagingException { QPID_CLIENT_EXTERN SessionError(const std::string&); }; -struct TransactionError : SessionError +struct TransactionError : public SessionError { QPID_CLIENT_EXTERN TransactionError(const std::string&); }; -struct TransactionAborted : TransactionError +struct TransactionAborted : public TransactionError { QPID_CLIENT_EXTERN TransactionAborted(const std::string&); }; -struct UnauthorizedAccess : SessionError +struct UnauthorizedAccess : public SessionError { QPID_CLIENT_EXTERN UnauthorizedAccess(const std::string&); }; -struct ConnectionError : MessagingException +struct ConnectionError : public MessagingException { QPID_CLIENT_EXTERN ConnectionError(const std::string&); }; -struct TransportFailure : MessagingException +struct TransportFailure : public MessagingException { QPID_CLIENT_EXTERN TransportFailure(const std::string&); }; |
