Lines Matching refs:runtime_error
219 class runtime_error : public exception
226 runtime_error(const string& __arg) _GLIBCXX_TXN_SAFE;
230 runtime_error(const char*) _GLIBCXX_TXN_SAFE;
232 runtime_error(runtime_error&&) noexcept;
233 runtime_error& operator=(runtime_error&&) noexcept;
237 runtime_error(const runtime_error&) _GLIBCXX_NOTHROW;
238 runtime_error& operator=(const runtime_error&) _GLIBCXX_NOTHROW;
240 runtime_error(const runtime_error&) = default;
241 runtime_error& operator=(const runtime_error&) = default;
244 virtual ~runtime_error() _GLIBCXX_TXN_SAFE_DYN _GLIBCXX_NOTHROW;
258 class range_error : public runtime_error
273 class overflow_error : public runtime_error
288 class underflow_error : public runtime_error