Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | // -*- C++ -*- |
| 2 | //===--------------------------- stdexcept --------------------------------===// |
| 3 | // |
Howard Hinnant | f5256e1 | 2010-05-11 21:36:01 +0000 | [diff] [blame] | 4 | // The LLVM Compiler Infrastructure |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5 | // |
Howard Hinnant | b64f8b0 | 2010-11-16 22:09:02 +0000 | [diff] [blame] | 6 | // This file is dual licensed under the MIT and the University of Illinois Open |
| 7 | // Source Licenses. See LICENSE.TXT for details. |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 8 | // |
| 9 | //===----------------------------------------------------------------------===// |
| 10 | |
| 11 | #ifndef _LIBCPP_STDEXCEPT |
| 12 | #define _LIBCPP_STDEXCEPT |
| 13 | |
| 14 | /* |
| 15 | stdexcept synopsis |
| 16 | |
| 17 | namespace std |
| 18 | { |
| 19 | |
| 20 | class logic_error; |
| 21 | class domain_error; |
| 22 | class invalid_argument; |
| 23 | class length_error; |
| 24 | class out_of_range; |
| 25 | class runtime_error; |
| 26 | class range_error; |
| 27 | class overflow_error; |
| 28 | class underflow_error; |
| 29 | |
| 30 | for each class xxx_error: |
| 31 | |
| 32 | class xxx_error : public exception // at least indirectly |
| 33 | { |
| 34 | public: |
| 35 | explicit xxx_error(const string& what_arg); |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 36 | explicit xxx_error(const char* what_arg); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 37 | |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 38 | virtual const char* what() const noexcept // returns what_arg |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 39 | }; |
| 40 | |
| 41 | } // std |
| 42 | |
| 43 | */ |
| 44 | |
| 45 | #include <__config> |
| 46 | #include <exception> |
| 47 | #include <iosfwd> // for string forward decl |
| 48 | |
Howard Hinnant | 08e1747 | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 49 | #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 50 | #pragma GCC system_header |
Howard Hinnant | 08e1747 | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 51 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 52 | |
Joerg Sonnenberger | 5562207 | 2014-04-30 19:54:11 +0000 | [diff] [blame] | 53 | #ifndef _LIBCPP___REFSTRING |
| 54 | _LIBCPP_BEGIN_NAMESPACE_STD |
| 55 | class _LIBCPP_HIDDEN __libcpp_refstring { |
Dimitry Andric | 70e0af4 | 2015-02-05 07:40:48 +0000 | [diff] [blame] | 56 | const char *__imp_ _LIBCPP_UNUSED; |
Joerg Sonnenberger | 5562207 | 2014-04-30 19:54:11 +0000 | [diff] [blame] | 57 | }; |
| 58 | _LIBCPP_END_NAMESPACE_STD |
| 59 | #endif |
| 60 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 61 | namespace std // purposefully not using versioning namespace |
| 62 | { |
| 63 | |
| 64 | class _LIBCPP_EXCEPTION_ABI logic_error |
| 65 | : public exception |
| 66 | { |
| 67 | private: |
Joerg Sonnenberger | 5562207 | 2014-04-30 19:54:11 +0000 | [diff] [blame] | 68 | _VSTD::__libcpp_refstring __imp_; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 69 | public: |
| 70 | explicit logic_error(const string&); |
| 71 | explicit logic_error(const char*); |
| 72 | |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 73 | logic_error(const logic_error&) _NOEXCEPT; |
| 74 | logic_error& operator=(const logic_error&) _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 75 | |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 76 | virtual ~logic_error() _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 77 | |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 78 | virtual const char* what() const _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 79 | }; |
| 80 | |
| 81 | class _LIBCPP_EXCEPTION_ABI runtime_error |
| 82 | : public exception |
| 83 | { |
| 84 | private: |
Joerg Sonnenberger | 5562207 | 2014-04-30 19:54:11 +0000 | [diff] [blame] | 85 | _VSTD::__libcpp_refstring __imp_; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 86 | public: |
| 87 | explicit runtime_error(const string&); |
| 88 | explicit runtime_error(const char*); |
| 89 | |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 90 | runtime_error(const runtime_error&) _NOEXCEPT; |
| 91 | runtime_error& operator=(const runtime_error&) _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 92 | |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 93 | virtual ~runtime_error() _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 94 | |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 95 | virtual const char* what() const _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 96 | }; |
| 97 | |
| 98 | class _LIBCPP_EXCEPTION_ABI domain_error |
| 99 | : public logic_error |
| 100 | { |
| 101 | public: |
| 102 | _LIBCPP_INLINE_VISIBILITY explicit domain_error(const string& __s) : logic_error(__s) {} |
| 103 | _LIBCPP_INLINE_VISIBILITY explicit domain_error(const char* __s) : logic_error(__s) {} |
| 104 | |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 105 | virtual ~domain_error() _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 106 | }; |
| 107 | |
| 108 | class _LIBCPP_EXCEPTION_ABI invalid_argument |
| 109 | : public logic_error |
| 110 | { |
| 111 | public: |
| 112 | _LIBCPP_INLINE_VISIBILITY explicit invalid_argument(const string& __s) : logic_error(__s) {} |
| 113 | _LIBCPP_INLINE_VISIBILITY explicit invalid_argument(const char* __s) : logic_error(__s) {} |
| 114 | |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 115 | virtual ~invalid_argument() _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 116 | }; |
| 117 | |
| 118 | class _LIBCPP_EXCEPTION_ABI length_error |
| 119 | : public logic_error |
| 120 | { |
| 121 | public: |
| 122 | _LIBCPP_INLINE_VISIBILITY explicit length_error(const string& __s) : logic_error(__s) {} |
| 123 | _LIBCPP_INLINE_VISIBILITY explicit length_error(const char* __s) : logic_error(__s) {} |
| 124 | |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 125 | virtual ~length_error() _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 126 | }; |
| 127 | |
| 128 | class _LIBCPP_EXCEPTION_ABI out_of_range |
| 129 | : public logic_error |
| 130 | { |
| 131 | public: |
| 132 | _LIBCPP_INLINE_VISIBILITY explicit out_of_range(const string& __s) : logic_error(__s) {} |
| 133 | _LIBCPP_INLINE_VISIBILITY explicit out_of_range(const char* __s) : logic_error(__s) {} |
| 134 | |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 135 | virtual ~out_of_range() _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 136 | }; |
| 137 | |
| 138 | class _LIBCPP_EXCEPTION_ABI range_error |
| 139 | : public runtime_error |
| 140 | { |
| 141 | public: |
| 142 | _LIBCPP_INLINE_VISIBILITY explicit range_error(const string& __s) : runtime_error(__s) {} |
| 143 | _LIBCPP_INLINE_VISIBILITY explicit range_error(const char* __s) : runtime_error(__s) {} |
| 144 | |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 145 | virtual ~range_error() _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 146 | }; |
| 147 | |
| 148 | class _LIBCPP_EXCEPTION_ABI overflow_error |
| 149 | : public runtime_error |
| 150 | { |
| 151 | public: |
| 152 | _LIBCPP_INLINE_VISIBILITY explicit overflow_error(const string& __s) : runtime_error(__s) {} |
| 153 | _LIBCPP_INLINE_VISIBILITY explicit overflow_error(const char* __s) : runtime_error(__s) {} |
| 154 | |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 155 | virtual ~overflow_error() _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 156 | }; |
| 157 | |
| 158 | class _LIBCPP_EXCEPTION_ABI underflow_error |
| 159 | : public runtime_error |
| 160 | { |
| 161 | public: |
| 162 | _LIBCPP_INLINE_VISIBILITY explicit underflow_error(const string& __s) : runtime_error(__s) {} |
| 163 | _LIBCPP_INLINE_VISIBILITY explicit underflow_error(const char* __s) : runtime_error(__s) {} |
| 164 | |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 165 | virtual ~underflow_error() _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 166 | }; |
| 167 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 168 | } // std |
| 169 | |
| 170 | #endif // _LIBCPP_STDEXCEPT |