Lines Matching refs:runtime_error
24 class runtime_error;
100 class _LIBCPP_EXCEPTION_ABI runtime_error
107 explicit runtime_error(const string&);
108 explicit runtime_error(const char*);
110 runtime_error(const runtime_error&) _NOEXCEPT;
111 runtime_error& operator=(const runtime_error&) _NOEXCEPT;
113 virtual ~runtime_error() _NOEXCEPT;
118 explicit runtime_error(const _VSTD::string&); // Symbol uses versioned std::string
119 _LIBCPP_INLINE_VISIBILITY explicit runtime_error(const char* __s) : exception(__s) {}
175 : public runtime_error
178 _LIBCPP_INLINE_VISIBILITY explicit range_error(const string& __s) : runtime_error(__s) {}
179 _LIBCPP_INLINE_VISIBILITY explicit range_error(const char* __s) : runtime_error(__s) {}
188 : public runtime_error
191 _LIBCPP_INLINE_VISIBILITY explicit overflow_error(const string& __s) : runtime_error(__s) {}
192 _LIBCPP_INLINE_VISIBILITY explicit overflow_error(const char* __s) : runtime_error(__s) {}
201 : public runtime_error
204 _LIBCPP_INLINE_VISIBILITY explicit underflow_error(const string& __s) : runtime_error(__s) {}
205 _LIBCPP_INLINE_VISIBILITY explicit underflow_error(const char* __s) : runtime_error(__s) {}