Lines Matching refs:runtime_error
25 class runtime_error;
94 class _LIBCPP_EXCEPTION_ABI runtime_error
100 explicit runtime_error(const string&);
101 explicit runtime_error(const char*);
103 runtime_error(const runtime_error&) _NOEXCEPT;
104 runtime_error& operator=(const runtime_error&) _NOEXCEPT;
106 virtual ~runtime_error() _NOEXCEPT;
152 : public runtime_error
155 _LIBCPP_INLINE_VISIBILITY explicit range_error(const string& __s) : runtime_error(__s) {}
156 _LIBCPP_INLINE_VISIBILITY explicit range_error(const char* __s) : runtime_error(__s) {}
162 : public runtime_error
165 _LIBCPP_INLINE_VISIBILITY explicit overflow_error(const string& __s) : runtime_error(__s) {}
166 _LIBCPP_INLINE_VISIBILITY explicit overflow_error(const char* __s) : runtime_error(__s) {}
172 : public runtime_error
175 _LIBCPP_INLINE_VISIBILITY explicit underflow_error(const string& __s) : runtime_error(__s) {}
176 _LIBCPP_INLINE_VISIBILITY explicit underflow_error(const char* __s) : runtime_error(__s) {}