summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/qpid/amqp_0_10/Exception.h
blob: 4841d9121524198eeba583b40d9c06afb5bb7b5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
#ifndef QPID_AMQP_0_10_EXCEPTION_H
#define QPID_AMQP_0_10_EXCEPTION_H

/*
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 *
 */

#include "qpid/Exception.h"
#include "qpid/amqp_0_10/specification_fwd.h"

namespace qpid {
namespace amqp_0_10 {

/** 
 * Raised when the connection is unexpectedly closed. Sessions with
 * non-0 timeout may be available for re-attachment on another connection.
 */
struct ConnectionException : public qpid::ConnectionException {
    // FIXME aconway 2008-04-04: Merge qpid::ConnectionException
    // into this when the old code is removed.
    typedef connection::CloseCode Code;
    ConnectionException(Code c, const std::string m)
        : qpid::ConnectionException(c,m), code(c) {}
    Code code;
};

/**
 * Raised when a session is unexpectedly detached for any reason, or
 * if an attempt is made to use a session that is not attached.
 */
struct SessionException : public qpid::SessionException  {
    // FIXME aconway 2008-04-04: should not have a code at this level.
    // Leave in place till old preview code is gone.
    SessionException(int code, const std::string& msg) : qpid::SessionException(code, msg) {} 
};

/** Raised when the state of a session has been destroyed */
struct SessionDestroyedException : public SessionException {
    // FIXME aconway 2008-04-04: should not have a code at this level.
    // Leave in place till old preview code is gone.
    SessionDestroyedException(int code, const std::string& msg) : SessionException(code, msg){} 
};

/** Raised when a session is destroyed due to an execution.exception */
struct SessionAbortedException : public SessionDestroyedException {
    typedef execution::ErrorCode Code;
    SessionAbortedException(Code c, const std::string m)
        : SessionDestroyedException(c, m), code(c) {}
    Code code;
};

/**
 * Raised when a session with 0 timeout is unexpectedly detached
 * and therefore expires and is destroyed.
 */
struct SessionExpiredException : public SessionDestroyedException {
    typedef session::DetachCode Code;
    SessionExpiredException(Code c, const std::string m)
        : SessionDestroyedException(c, m), code(c) {}
    Code code;
};

/**
 * Raised when a session with non-0 timeout is unexpectedly detached
 * or if an attempt is made to use a session that is not attached.
 * 
 * The session is not necessarily destroyed, it may be possible to
 * re-attach.
 */
struct SessionDetachedException : public SessionException {
    typedef session::DetachCode Code;
    SessionDetachedException(Code c, const std::string m)
        : SessionException(c, m), code(c) {}
    Code code;
};
    
}} // namespace qpid::amqp_0_10

#endif  /*!QPID_AMQP_0_10_EXCEPTION_H*/
#ifndef QPID_AMQP_0_10_EXCEPTION_H
#define QPID_AMQP_0_10_EXCEPTION_H

/*
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 *
 */

#include "qpid/Exception.h"
#include "qpid/amqp_0_10/specification_fwd.h"

namespace qpid {
namespace amqp_0_10 {

/** 
 * Raised when the connection is unexpectedly closed. Sessions with
 * non-0 timeout may be available for re-attachment on another connection.
 */
struct ConnectionException : public Exception {
    typedef connection::CloseCode Code;
    ConnectionException(Code c, const std::string m)
        : Exception(m), code(c) {}
    Code code;
};

/**
 * Raised when a session is unexpectedly detached for any reason, or
 * if an attempt is made to use a session that is not attached.
 */
struct SessionException : public Exception {
    SessionException(const std::string& msg) : Exception(msg) {} 
};

/** Raised when the state of a session has been destroyed */
struct SessionDestroyedException : public SessionException {
    SessionDestroyedException(const std::string& msg) : SessionException(msg){} 
};

/** Raised when a session is destroyed due to an execution.exception */
struct SessionAbortedException : public SessionDestroyedException {
    typedef execution::ErrorCode Code;
    SessionAbortedException(Code c, const std::string m)
        : SessionDestroyedException(m), code(c) {}
    Code code;
};

/**
 * Raised when a session with 0 timeout is unexpectedly detached
 * and therefore expires and is destroyed.
 */
struct SessionExpiredException : public SessionDestroyedException {
    typedef session::DetachCode Code;
    SessionExpiredException(Code c, const std::string m)
        : SessionDestroyedException(m), code(c) {}
    Code code;
};

/**
 * Raised when a session with non-0 timeout is unexpectedly detached
 * or if an attempt is made to use a session that is not attached.
 * 
 * The session is not necessarily destroyed, it may be possible to
 * re-attach.
 */
struct SessionDetachedException : public SessionException {
    typedef session::DetachCode Code;
    SessionDetachedException(Code c, const std::string m)
        : SessionException(m), code(c) {}
    Code code;
};
    
}} // namespace qpid::amqp_0_10

#endif  /*!QPID_AMQP_0_10_EXCEPTION_H*/