bad_access.hpp 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /* Exception types throwable
  2. (C) 2017-2019 Niall Douglas <http://www.nedproductions.biz/> (9 commits)
  3. File Created: Oct 2017
  4. Boost Software License - Version 1.0 - August 17th, 2003
  5. Permission is hereby granted, free of charge, to any person or organization
  6. obtaining a copy of the software and accompanying documentation covered by
  7. this license (the "Software") to use, reproduce, display, distribute,
  8. execute, and transmit the Software, and to prepare derivative works of the
  9. Software, and to permit third-parties to whom the Software is furnished to
  10. do so, all subject to the following:
  11. The copyright notices in the Software and this entire statement, including
  12. the above license grant, this restriction and the following disclaimer,
  13. must be included in all copies of the Software, in whole or in part, and
  14. all derivative works of the Software, unless such copies or derivative
  15. works are solely in the form of machine-executable object code generated by
  16. a source language processor.
  17. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  18. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  19. FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
  20. SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
  21. FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
  22. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  23. DEALINGS IN THE SOFTWARE.
  24. */
  25. #ifndef BOOST_OUTCOME_BAD_ACCESS_HPP
  26. #define BOOST_OUTCOME_BAD_ACCESS_HPP
  27. #include "config.hpp"
  28. #include <stdexcept>
  29. BOOST_OUTCOME_V2_NAMESPACE_EXPORT_BEGIN
  30. /*! AWAITING HUGO JSON CONVERSION TOOL
  31. type definition bad_result_access. Potential doc page: `bad_result_access`
  32. */
  33. class BOOST_OUTCOME_SYMBOL_VISIBLE bad_result_access : public std::logic_error
  34. {
  35. public:
  36. explicit bad_result_access(const char *what)
  37. : std::logic_error(what)
  38. {
  39. }
  40. };
  41. /*! AWAITING HUGO JSON CONVERSION TOOL
  42. type definition template <class S> bad_result_access_with. Potential doc page: `bad_result_access_with<EC>`
  43. */
  44. template <class S> class BOOST_OUTCOME_SYMBOL_VISIBLE bad_result_access_with : public bad_result_access
  45. {
  46. S _error;
  47. public:
  48. explicit bad_result_access_with(S v)
  49. : bad_result_access("no value")
  50. , _error(std::move(v))
  51. {
  52. }
  53. /*! AWAITING HUGO JSON CONVERSION TOOL
  54. SIGNATURE NOT RECOGNISED
  55. */
  56. const S &error() const & { return _error; }
  57. /*! AWAITING HUGO JSON CONVERSION TOOL
  58. SIGNATURE NOT RECOGNISED
  59. */
  60. S &error() & { return _error; }
  61. /*! AWAITING HUGO JSON CONVERSION TOOL
  62. SIGNATURE NOT RECOGNISED
  63. */
  64. const S &&error() const && { return _error; }
  65. /*! AWAITING HUGO JSON CONVERSION TOOL
  66. SIGNATURE NOT RECOGNISED
  67. */
  68. S &&error() && { return _error; }
  69. };
  70. /*! AWAITING HUGO JSON CONVERSION TOOL
  71. type definition bad_outcome_access. Potential doc page: `bad_outcome_access`
  72. */
  73. class BOOST_OUTCOME_SYMBOL_VISIBLE bad_outcome_access : public std::logic_error
  74. {
  75. public:
  76. explicit bad_outcome_access(const char *what)
  77. : std::logic_error(what)
  78. {
  79. }
  80. };
  81. BOOST_OUTCOME_V2_NAMESPACE_END
  82. #endif