Cyclone ISO C++ API Reference Guide
Exception.hpp
Go to the documentation of this file.
1 #ifndef OMG_DDS_CORE_EXCEPTION_HPP_
2 #define OMG_DDS_CORE_EXCEPTION_HPP_
3 
4 /* Copyright 2010, Object Management Group, Inc.
5  * Copyright 2010, PrismTech, Corp.
6  * Copyright 2010, Real-Time Innovations, Inc.
7  * All rights reserved.
8  *
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  * http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  */
21 
22 #include <stdexcept>
23 #include <string>
24 #include <dds/core/macros.hpp>
25 
26 #if defined _MSC_VER
27 # pragma warning (push)
28 # pragma warning (disable:4275) // non dll-interface class 'std::foo_error' used as base for dll-interface class 'dds::core::BarError'
29 #endif
30 
31 namespace dds
32 {
33 namespace core
34 {
35 
65 {
66 protected:
67  Exception();
68 public:
70  virtual ~Exception() throw();
73 public:
104  virtual const char* what() const throw() = 0;
105 };
106 
111 class OMG_DDS_API Error : public Exception, public std::logic_error
112 {
114 public:
115  explicit Error(const std::string& msg);
116  Error(const Error& src);
117  virtual ~Error() throw();
118 
119 public:
120  virtual const char* what() const throw();
122 };
123 
128 class OMG_DDS_API AlreadyClosedError : public Exception, public std::logic_error
129 {
131 public:
132  explicit AlreadyClosedError(const std::string& msg);
134  virtual ~AlreadyClosedError() throw();
135 
136 public:
137  virtual const char* what() const throw();
139 };
140 
149 class OMG_DDS_API IllegalOperationError : public Exception, public std::logic_error
150 {
152 public:
153  explicit IllegalOperationError(const std::string& msg);
155  virtual ~IllegalOperationError() throw();
156 
157 public:
158  virtual const char* what() const throw();
160 };
161 
166 class OMG_DDS_API ImmutablePolicyError : public Exception, public std::logic_error
167 {
169 public:
170  explicit ImmutablePolicyError(const std::string& msg);
172  virtual ~ImmutablePolicyError() throw();
173 
174 public:
175  virtual const char* what() const throw();
177 };
178 
184 class OMG_DDS_API InconsistentPolicyError : public Exception, public std::logic_error
185 {
187 public:
188  explicit InconsistentPolicyError(const std::string& msg);
190  virtual ~InconsistentPolicyError() throw();
191 
192 public:
193  virtual const char* what() const throw();
195 };
196 
201 class OMG_DDS_API InvalidArgumentError : public Exception, public std::invalid_argument
202 {
204 public:
205  explicit InvalidArgumentError(const std::string& msg);
207  virtual ~InvalidArgumentError() throw();
208 
209 public:
210  virtual const char* what() const throw();
212 };
213 
218 class OMG_DDS_API NotEnabledError : public Exception, public std::logic_error
219 {
221 public:
222  explicit NotEnabledError(const std::string& msg);
223  NotEnabledError(const NotEnabledError& src);
224  virtual ~NotEnabledError() throw();
225 
226 public:
227  virtual const char* what() const throw();
229 };
230 
236 class OMG_DDS_API OutOfResourcesError : public Exception, public std::runtime_error
237 {
239 public:
240  explicit OutOfResourcesError(const std::string& msg);
242  virtual ~OutOfResourcesError() throw();
243 
244 public:
245  virtual const char* what() const throw();
247 };
248 
249 
254 class OMG_DDS_API PreconditionNotMetError : public Exception, public std::logic_error
255 {
257 public:
258  explicit PreconditionNotMetError(const std::string& msg);
260  virtual ~PreconditionNotMetError() throw();
261 
262 public:
263  virtual const char* what() const throw();
265 };
266 
271 class OMG_DDS_API TimeoutError : public Exception, public std::runtime_error
272 {
274 public:
275  explicit TimeoutError(const std::string& msg);
276  TimeoutError(const TimeoutError& src);
277  virtual ~TimeoutError() throw();
278 
279 public:
280  virtual const char* what() const throw();
282 };
283 
290 class OMG_DDS_API UnsupportedError : public Exception, public std::logic_error
291 {
293 public:
294  explicit UnsupportedError(const std::string& msg);
296  virtual ~UnsupportedError() throw();
297 
298 public:
299  virtual const char* what() const throw();
301 };
302 
307 class OMG_DDS_API InvalidDowncastError : public Exception, public std::runtime_error
308 {
310 public:
311  explicit InvalidDowncastError(const std::string& msg);
313  virtual ~InvalidDowncastError() throw();
314 
315 public:
316  virtual const char* what() const throw();
318 };
319 
334 class OMG_DDS_API NullReferenceError : public Exception, public std::runtime_error
335 {
337 public:
338  explicit NullReferenceError(const std::string& msg);
340  virtual ~NullReferenceError() throw();
341 
342 public:
343  virtual const char* what() const throw();
345 };
346 
351 class OMG_DDS_API InvalidDataError : public Exception, public std::logic_error
352 {
354 public:
355  explicit InvalidDataError(const std::string& msg);
357  virtual ~InvalidDataError() throw();
358 
359 public:
360  virtual const char* what() const throw();
362 };
363 
364 }
365 }
366 
367 #if defined _MSC_VER
368 # pragma warning (pop)
369 #endif
370 
371 
372 #endif /* OMG_DDS_CORE_EXCEPTION_HPP_ */
dds::core::OutOfResourcesError
Exception: Service ran out of the resources needed to complete the operation.
Definition: Exception.hpp:236
dds::core::NotEnabledError
Exception: Operation invoked on an Entity that is not yet enabled.
Definition: Exception.hpp:218
dds::core::AlreadyClosedError
Exception: The object target of this operation has already been closed.
Definition: Exception.hpp:128
dds::core::InvalidArgumentError
Exception: Application is passing an invalid argument.
Definition: Exception.hpp:201
dds::core::ImmutablePolicyError
Exception: Application attempted to modify an immutable QosPolicy.
Definition: Exception.hpp:166
dds::core::Error
Exception: Generic, unspecified error.
Definition: Exception.hpp:111
dds::core::IllegalOperationError
Exception: An operation was invoked on an inappropriate object or at an inappropriate time.
Definition: Exception.hpp:149
dds::core::TimeoutError
Exception: The operation timed out.
Definition: Exception.hpp:271
OMG_DDS_API
#define OMG_DDS_API
Definition: macros.hpp:52
dds
Definition: array.hpp:30
macros.hpp
dds::core::InvalidDowncastError
Exception: Application has attempted to cast incompatible types.
Definition: Exception.hpp:307
dds::core::InconsistentPolicyError
Exception: Application specified a set of policies that are not consistent with each other.
Definition: Exception.hpp:184
dds::core::InvalidDataError
Exception: Application provided invalid data
Definition: Exception.hpp:351
dds::core::UnsupportedError
Exception: Unsupported operation.
Definition: Exception.hpp:290
dds::core::Exception
Exception: base class for specified DDS Exceptions.
Definition: Exception.hpp:64
dds::core::PreconditionNotMetError
Exception: A pre-condition for the operation was not met.
Definition: Exception.hpp:254
dds::core::NullReferenceError
Exception: Application used a null reference.
Definition: Exception.hpp:334