-rw-r--r-- | include/opkele/exception.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/opkele/exception.h b/include/opkele/exception.h index 753a818..2ff44b7 100644 --- a/include/opkele/exception.h +++ b/include/opkele/exception.h | |||
@@ -125,96 +125,105 @@ namespace opkele { | |||
125 | }; | 125 | }; |
126 | /** | 126 | /** |
127 | * thrown if the handle passed to check_authentication request is not | 127 | * thrown if the handle passed to check_authentication request is not |
128 | * stateless | 128 | * stateless |
129 | */ | 129 | */ |
130 | class stateful_handle : public exception { | 130 | class stateful_handle : public exception { |
131 | public: | 131 | public: |
132 | stateful_handle(OPKELE_E_PARS) | 132 | stateful_handle(OPKELE_E_PARS) |
133 | : exception(OPKELE_E_CONS) { } | 133 | : exception(OPKELE_E_CONS) { } |
134 | }; | 134 | }; |
135 | 135 | ||
136 | /** | 136 | /** |
137 | * thrown if check_authentication request fails | 137 | * thrown if check_authentication request fails |
138 | */ | 138 | */ |
139 | class failed_check_authentication : public exception { | 139 | class failed_check_authentication : public exception { |
140 | public: | 140 | public: |
141 | failed_check_authentication(OPKELE_E_PARS) | 141 | failed_check_authentication(OPKELE_E_PARS) |
142 | : exception(OPKELE_E_CONS) { } | 142 | : exception(OPKELE_E_CONS) { } |
143 | }; | 143 | }; |
144 | 144 | ||
145 | /** | 145 | /** |
146 | * thrown if the id_res request result is negative | 146 | * thrown if the id_res request result is negative |
147 | */ | 147 | */ |
148 | class id_res_failed : public exception { | 148 | class id_res_failed : public exception { |
149 | public: | 149 | public: |
150 | id_res_failed(OPKELE_E_PARS) | 150 | id_res_failed(OPKELE_E_PARS) |
151 | : exception(OPKELE_E_CONS) { } | 151 | : exception(OPKELE_E_CONS) { } |
152 | }; | 152 | }; |
153 | /** | 153 | /** |
154 | * thrown if the user_setup_url is provided with negative response | 154 | * thrown if the user_setup_url is provided with negative response |
155 | */ | 155 | */ |
156 | class id_res_setup : public id_res_failed { | 156 | class id_res_setup : public id_res_failed { |
157 | public: | 157 | public: |
158 | string setup_url; | 158 | string setup_url; |
159 | id_res_setup(OPKELE_E_PARS,const string& su) | 159 | id_res_setup(OPKELE_E_PARS,const string& su) |
160 | : id_res_failed(OPKELE_E_CONS), setup_url(su) { } | 160 | : id_res_failed(OPKELE_E_CONS), setup_url(su) { } |
161 | ~id_res_setup() throw() { } | 161 | ~id_res_setup() throw() { } |
162 | }; | 162 | }; |
163 | /** | 163 | /** |
164 | * thrown in case of signature mismatch | 164 | * thrown in case of signature mismatch |
165 | */ | 165 | */ |
166 | class id_res_mismatch : public id_res_failed { | 166 | class id_res_mismatch : public id_res_failed { |
167 | public: | 167 | public: |
168 | id_res_mismatch(OPKELE_E_PARS) | 168 | id_res_mismatch(OPKELE_E_PARS) |
169 | : id_res_failed(OPKELE_E_CONS) { } | 169 | : id_res_failed(OPKELE_E_CONS) { } |
170 | }; | 170 | }; |
171 | 171 | ||
172 | /** | 172 | /** |
173 | * thrown if the association has expired before it could've been verified. | ||
174 | */ | ||
175 | class id_res_expired_on_delivery : public id_res_failed { | ||
176 | public: | ||
177 | id_res_expired_on_delivery(OPKELE_E_PARS) | ||
178 | : id_res_failed(OPKELE_E_CONS) { } | ||
179 | }; | ||
180 | |||
181 | /** | ||
173 | * openssl malfunction occured | 182 | * openssl malfunction occured |
174 | */ | 183 | */ |
175 | class exception_openssl : public exception { | 184 | class exception_openssl : public exception { |
176 | public: | 185 | public: |
177 | unsigned long _error; | 186 | unsigned long _error; |
178 | string _ssl_string; | 187 | string _ssl_string; |
179 | exception_openssl(OPKELE_E_PARS); | 188 | exception_openssl(OPKELE_E_PARS); |
180 | ~exception_openssl() throw() { } | 189 | ~exception_openssl() throw() { } |
181 | }; | 190 | }; |
182 | 191 | ||
183 | /** | 192 | /** |
184 | * network operation related error occured | 193 | * network operation related error occured |
185 | */ | 194 | */ |
186 | class exception_network : public exception { | 195 | class exception_network : public exception { |
187 | public: | 196 | public: |
188 | exception_network(OPKELE_E_PARS) | 197 | exception_network(OPKELE_E_PARS) |
189 | : exception(OPKELE_E_CONS) { } | 198 | : exception(OPKELE_E_CONS) { } |
190 | }; | 199 | }; |
191 | 200 | ||
192 | /** | 201 | /** |
193 | * network operation related error occured, specifically, related to | 202 | * network operation related error occured, specifically, related to |
194 | * libcurl | 203 | * libcurl |
195 | */ | 204 | */ |
196 | class exception_curl : public exception_network { | 205 | class exception_curl : public exception_network { |
197 | public: | 206 | public: |
198 | CURLcode _error; | 207 | CURLcode _error; |
199 | string _curl_string; | 208 | string _curl_string; |
200 | exception_curl(OPKELE_E_PARS); | 209 | exception_curl(OPKELE_E_PARS); |
201 | exception_curl(OPKELE_E_PARS,CURLcode e); | 210 | exception_curl(OPKELE_E_PARS,CURLcode e); |
202 | ~exception_curl() throw() { } | 211 | ~exception_curl() throw() { } |
203 | }; | 212 | }; |
204 | 213 | ||
205 | /** | 214 | /** |
206 | * not implemented (think pure virtual) member function executed, signfies | 215 | * not implemented (think pure virtual) member function executed, signfies |
207 | * programmer error | 216 | * programmer error |
208 | */ | 217 | */ |
209 | class not_implemented : public exception { | 218 | class not_implemented : public exception { |
210 | public: | 219 | public: |
211 | not_implemented(OPKELE_E_PARS) | 220 | not_implemented(OPKELE_E_PARS) |
212 | : exception(OPKELE_E_CONS) { } | 221 | : exception(OPKELE_E_CONS) { } |
213 | }; | 222 | }; |
214 | 223 | ||
215 | /** | 224 | /** |
216 | * internal error, indicates internal libopkele problem | 225 | * internal error, indicates internal libopkele problem |
217 | */ | 226 | */ |
218 | class internal_error : public exception { | 227 | class internal_error : public exception { |
219 | public: | 228 | public: |
220 | internal_error(OPKELE_E_PARS) | 229 | internal_error(OPKELE_E_PARS) |