Lines Matching full:runtime_error
25 class runtime_error;
81 class _LIBCPP_EXCEPTION_ABI runtime_error
87 explicit runtime_error(const string&);
88 explicit runtime_error(const char*);
90 runtime_error(const runtime_error&) _NOEXCEPT;
91 runtime_error& operator=(const runtime_error&) _NOEXCEPT;
93 virtual ~runtime_error() _NOEXCEPT;
139 : public runtime_error
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) {}
149 : public runtime_error
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) {}
159 : public runtime_error
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) {}