exceptions.hpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  1. /*
  2. * Copyright Andrey Semashev 2007 - 2015.
  3. * Distributed under the Boost Software License, Version 1.0.
  4. * (See accompanying file LICENSE_1_0.txt or copy at
  5. * http://www.boost.org/LICENSE_1_0.txt)
  6. */
  7. /*!
  8. * \file
  9. * \author Andrey Semashev
  10. * \date 31.10.2009
  11. *
  12. * The header contains exception classes declarations.
  13. */
  14. #ifndef BOOST_LOG_EXCEPTIONS_HPP_INCLUDED_
  15. #define BOOST_LOG_EXCEPTIONS_HPP_INCLUDED_
  16. #include <cstddef>
  17. #include <string>
  18. #include <stdexcept>
  19. #include <boost/type_index.hpp>
  20. #include <boost/preprocessor/seq/enum.hpp>
  21. #include <boost/log/detail/config.hpp>
  22. #include <boost/log/attributes/attribute_name.hpp>
  23. #include <boost/log/detail/header.hpp>
  24. #ifdef BOOST_HAS_PRAGMA_ONCE
  25. #pragma once
  26. #endif
  27. namespace boost {
  28. // Forward-declaration of an exception base class from Boost.Exception
  29. #if defined(__GNUC__)
  30. # if (__GNUC__ == 4 && __GNUC_MINOR__ >= 1) || (__GNUC__ > 4)
  31. # pragma GCC visibility push (default)
  32. class exception;
  33. # pragma GCC visibility pop
  34. # else
  35. class exception;
  36. # endif
  37. #else
  38. class BOOST_SYMBOL_VISIBLE exception;
  39. #endif
  40. BOOST_LOG_OPEN_NAMESPACE
  41. namespace aux {
  42. //! Attaches attribute name exception information
  43. BOOST_LOG_API void attach_attribute_name_info(exception& e, attribute_name const& name);
  44. } // namespace aux
  45. /*!
  46. * \brief Base class for runtime exceptions from the logging library
  47. *
  48. * Exceptions derived from this class indicate a problem that may not directly
  49. * be caused by the user's code that interacts with the library, such as
  50. * errors caused by input data.
  51. */
  52. class BOOST_LOG_API runtime_error :
  53. public std::runtime_error
  54. {
  55. protected:
  56. /*!
  57. * Initializing constructor. Creates an exception with the specified error message.
  58. */
  59. explicit runtime_error(std::string const& descr);
  60. /*!
  61. * Destructor
  62. */
  63. ~runtime_error() throw();
  64. };
  65. /*!
  66. * \brief Exception class that is used to indicate errors of missing values
  67. */
  68. class BOOST_LOG_API missing_value :
  69. public runtime_error
  70. {
  71. public:
  72. /*!
  73. * Default constructor. Creates an exception with the default error message.
  74. */
  75. missing_value();
  76. /*!
  77. * Initializing constructor. Creates an exception with the specified error message.
  78. */
  79. explicit missing_value(std::string const& descr);
  80. /*!
  81. * Destructor
  82. */
  83. ~missing_value() throw();
  84. #ifndef BOOST_LOG_DOXYGEN_PASS
  85. static BOOST_LOG_NORETURN void throw_(const char* file, std::size_t line);
  86. static BOOST_LOG_NORETURN void throw_(const char* file, std::size_t line, std::string const& descr);
  87. static BOOST_LOG_NORETURN void throw_(const char* file, std::size_t line, std::string const& descr, attribute_name const& name);
  88. #endif
  89. };
  90. /*!
  91. * \brief Exception class that is used to indicate errors of incorrect type of an object
  92. */
  93. class BOOST_LOG_API invalid_type :
  94. public runtime_error
  95. {
  96. public:
  97. /*!
  98. * Default constructor. Creates an exception with the default error message.
  99. */
  100. invalid_type();
  101. /*!
  102. * Initializing constructor. Creates an exception with the specified error message.
  103. */
  104. explicit invalid_type(std::string const& descr);
  105. /*!
  106. * Destructor
  107. */
  108. ~invalid_type() throw();
  109. #ifndef BOOST_LOG_DOXYGEN_PASS
  110. static BOOST_LOG_NORETURN void throw_(const char* file, std::size_t line);
  111. static BOOST_LOG_NORETURN void throw_(const char* file, std::size_t line, std::string const& descr);
  112. static BOOST_LOG_NORETURN void throw_(const char* file, std::size_t line, std::string const& descr, attribute_name const& name);
  113. static BOOST_LOG_NORETURN void throw_(const char* file, std::size_t line, std::string const& descr, typeindex::type_index const& type);
  114. static BOOST_LOG_NORETURN void throw_(const char* file, std::size_t line, std::string const& descr, attribute_name const& name, typeindex::type_index const& type);
  115. #endif
  116. };
  117. /*!
  118. * \brief Exception class that is used to indicate errors of incorrect value of an object
  119. */
  120. class BOOST_LOG_API invalid_value :
  121. public runtime_error
  122. {
  123. public:
  124. /*!
  125. * Default constructor. Creates an exception with the default error message.
  126. */
  127. invalid_value();
  128. /*!
  129. * Initializing constructor. Creates an exception with the specified error message.
  130. */
  131. explicit invalid_value(std::string const& descr);
  132. /*!
  133. * Destructor
  134. */
  135. ~invalid_value() throw();
  136. #ifndef BOOST_LOG_DOXYGEN_PASS
  137. static BOOST_LOG_NORETURN void throw_(const char* file, std::size_t line);
  138. static BOOST_LOG_NORETURN void throw_(const char* file, std::size_t line, std::string const& descr);
  139. #endif
  140. };
  141. /*!
  142. * \brief Exception class that is used to indicate parsing errors
  143. */
  144. class BOOST_LOG_API parse_error :
  145. public runtime_error
  146. {
  147. public:
  148. /*!
  149. * Default constructor. Creates an exception with the default error message.
  150. */
  151. parse_error();
  152. /*!
  153. * Initializing constructor. Creates an exception with the specified error message.
  154. */
  155. explicit parse_error(std::string const& descr);
  156. /*!
  157. * Destructor
  158. */
  159. ~parse_error() throw();
  160. #ifndef BOOST_LOG_DOXYGEN_PASS
  161. static BOOST_LOG_NORETURN void throw_(const char* file, std::size_t line);
  162. static BOOST_LOG_NORETURN void throw_(const char* file, std::size_t line, std::string const& descr);
  163. static BOOST_LOG_NORETURN void throw_(const char* file, std::size_t line, std::string const& descr, std::size_t content_line);
  164. static BOOST_LOG_NORETURN void throw_(const char* file, std::size_t line, std::string const& descr, attribute_name const& name);
  165. #endif
  166. };
  167. /*!
  168. * \brief Exception class that is used to indicate conversion errors
  169. */
  170. class BOOST_LOG_API conversion_error :
  171. public runtime_error
  172. {
  173. public:
  174. /*!
  175. * Default constructor. Creates an exception with the default error message.
  176. */
  177. conversion_error();
  178. /*!
  179. * Initializing constructor. Creates an exception with the specified error message.
  180. */
  181. explicit conversion_error(std::string const& descr);
  182. /*!
  183. * Destructor
  184. */
  185. ~conversion_error() throw();
  186. #ifndef BOOST_LOG_DOXYGEN_PASS
  187. static BOOST_LOG_NORETURN void throw_(const char* file, std::size_t line);
  188. static BOOST_LOG_NORETURN void throw_(const char* file, std::size_t line, std::string const& descr);
  189. #endif
  190. };
  191. /*!
  192. * \brief Exception class that is used to indicate underlying OS API errors
  193. */
  194. class BOOST_LOG_API system_error :
  195. public runtime_error
  196. {
  197. public:
  198. /*!
  199. * Default constructor. Creates an exception with the default error message.
  200. */
  201. system_error();
  202. /*!
  203. * Initializing constructor. Creates an exception with the specified error message.
  204. */
  205. explicit system_error(std::string const& descr);
  206. /*!
  207. * Destructor
  208. */
  209. ~system_error() throw();
  210. #ifndef BOOST_LOG_DOXYGEN_PASS
  211. static BOOST_LOG_NORETURN void throw_(const char* file, std::size_t line);
  212. static BOOST_LOG_NORETURN void throw_(const char* file, std::size_t line, std::string const& descr);
  213. #endif
  214. };
  215. /*!
  216. * \brief Base class for logic exceptions from the logging library
  217. *
  218. * Exceptions derived from this class usually indicate errors on the user's side, such as
  219. * incorrect library usage.
  220. */
  221. class BOOST_LOG_API logic_error :
  222. public std::logic_error
  223. {
  224. protected:
  225. /*!
  226. * Initializing constructor. Creates an exception with the specified error message.
  227. */
  228. explicit logic_error(std::string const& descr);
  229. /*!
  230. * Destructor
  231. */
  232. ~logic_error() throw();
  233. };
  234. /*!
  235. * \brief Exception class that is used to indicate ODR violation
  236. */
  237. class BOOST_LOG_API odr_violation :
  238. public logic_error
  239. {
  240. public:
  241. /*!
  242. * Default constructor. Creates an exception with the default error message.
  243. */
  244. odr_violation();
  245. /*!
  246. * Initializing constructor. Creates an exception with the specified error message.
  247. */
  248. explicit odr_violation(std::string const& descr);
  249. /*!
  250. * Destructor
  251. */
  252. ~odr_violation() throw();
  253. #ifndef BOOST_LOG_DOXYGEN_PASS
  254. static BOOST_LOG_NORETURN void throw_(const char* file, std::size_t line);
  255. static BOOST_LOG_NORETURN void throw_(const char* file, std::size_t line, std::string const& descr);
  256. #endif
  257. };
  258. /*!
  259. * \brief Exception class that is used to indicate invalid call sequence
  260. */
  261. class BOOST_LOG_API unexpected_call :
  262. public logic_error
  263. {
  264. public:
  265. /*!
  266. * Default constructor. Creates an exception with the default error message.
  267. */
  268. unexpected_call();
  269. /*!
  270. * Initializing constructor. Creates an exception with the specified error message.
  271. */
  272. explicit unexpected_call(std::string const& descr);
  273. /*!
  274. * Destructor
  275. */
  276. ~unexpected_call() throw();
  277. #ifndef BOOST_LOG_DOXYGEN_PASS
  278. static BOOST_LOG_NORETURN void throw_(const char* file, std::size_t line);
  279. static BOOST_LOG_NORETURN void throw_(const char* file, std::size_t line, std::string const& descr);
  280. #endif
  281. };
  282. /*!
  283. * \brief Exception class that is used to indicate invalid library setup
  284. */
  285. class BOOST_LOG_API setup_error :
  286. public logic_error
  287. {
  288. public:
  289. /*!
  290. * Default constructor. Creates an exception with the default error message.
  291. */
  292. setup_error();
  293. /*!
  294. * Initializing constructor. Creates an exception with the specified error message.
  295. */
  296. explicit setup_error(std::string const& descr);
  297. /*!
  298. * Destructor
  299. */
  300. ~setup_error() throw();
  301. #ifndef BOOST_LOG_DOXYGEN_PASS
  302. static BOOST_LOG_NORETURN void throw_(const char* file, std::size_t line);
  303. static BOOST_LOG_NORETURN void throw_(const char* file, std::size_t line, std::string const& descr);
  304. #endif
  305. };
  306. /*!
  307. * \brief Exception class that is used to indicate library limitation
  308. */
  309. class BOOST_LOG_API limitation_error :
  310. public logic_error
  311. {
  312. public:
  313. /*!
  314. * Default constructor. Creates an exception with the default error message.
  315. */
  316. limitation_error();
  317. /*!
  318. * Initializing constructor. Creates an exception with the specified error message.
  319. */
  320. explicit limitation_error(std::string const& descr);
  321. /*!
  322. * Destructor
  323. */
  324. ~limitation_error() throw();
  325. #ifndef BOOST_LOG_DOXYGEN_PASS
  326. static BOOST_LOG_NORETURN void throw_(const char* file, std::size_t line);
  327. static BOOST_LOG_NORETURN void throw_(const char* file, std::size_t line, std::string const& descr);
  328. #endif
  329. };
  330. BOOST_LOG_CLOSE_NAMESPACE // namespace log
  331. } // namespace boost
  332. #ifndef BOOST_LOG_DOXYGEN_PASS
  333. #define BOOST_LOG_THROW(ex)\
  334. ex::throw_(__FILE__, static_cast< std::size_t >(__LINE__))
  335. #define BOOST_LOG_THROW_DESCR(ex, descr)\
  336. ex::throw_(__FILE__, static_cast< std::size_t >(__LINE__), descr)
  337. #define BOOST_LOG_THROW_DESCR_PARAMS(ex, descr, params)\
  338. ex::throw_(__FILE__, static_cast< std::size_t >(__LINE__), descr, BOOST_PP_SEQ_ENUM(params))
  339. #endif // BOOST_LOG_DOXYGEN_PASS
  340. #include <boost/log/detail/footer.hpp>
  341. #endif // BOOST_LOG_EXCEPTIONS_HPP_INCLUDED_