Lines Matching refs:runtime_error
24 class runtime_error;
99 class _LIBCPP_EXCEPTION_ABI runtime_error
106 explicit runtime_error(const string&);
107 explicit runtime_error(const char*);
109 runtime_error(const runtime_error&) _NOEXCEPT;
110 runtime_error& operator=(const runtime_error&) _NOEXCEPT;
112 virtual ~runtime_error() _NOEXCEPT;
117 explicit runtime_error(const _VSTD::string&); // Symbol uses versioned std::string
118 _LIBCPP_INLINE_VISIBILITY explicit runtime_error(const char* __s) : exception(__s) {}
174 : public runtime_error
177 _LIBCPP_INLINE_VISIBILITY explicit range_error(const string& __s) : runtime_error(__s) {}
178 _LIBCPP_INLINE_VISIBILITY explicit range_error(const char* __s) : runtime_error(__s) {}
187 : public runtime_error
190 _LIBCPP_INLINE_VISIBILITY explicit overflow_error(const string& __s) : runtime_error(__s) {}
191 _LIBCPP_INLINE_VISIBILITY explicit overflow_error(const char* __s) : runtime_error(__s) {}
200 : public runtime_error
203 _LIBCPP_INLINE_VISIBILITY explicit underflow_error(const string& __s) : runtime_error(__s) {}
204 _LIBCPP_INLINE_VISIBILITY explicit underflow_error(const char* __s) : runtime_error(__s) {}