#ifndef _LIBCPP_STDEXCEPT
#define _LIBCPP_STDEXCEPT
#include <__config>
#include <__exception/exception.h>
#include <__fwd/string.h>
#include <__verbose_abort>
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
# pragma GCC system_header
#endif
_LIBCPP_BEGIN_NAMESPACE_STD
#ifndef _LIBCPP_ABI_VCRUNTIME
class _LIBCPP_HIDDEN __libcpp_refstring { … };
#endif
_LIBCPP_END_NAMESPACE_STD
namespace std
{
class _LIBCPP_EXPORTED_FROM_ABI logic_error : public exception { … };
class _LIBCPP_EXPORTED_FROM_ABI runtime_error : public exception { … };
class _LIBCPP_EXPORTED_FROM_ABI domain_error : public logic_error { … };
class _LIBCPP_EXPORTED_FROM_ABI invalid_argument : public logic_error { … };
class _LIBCPP_EXPORTED_FROM_ABI length_error : public logic_error { … };
class _LIBCPP_EXPORTED_FROM_ABI out_of_range : public logic_error { … };
class _LIBCPP_EXPORTED_FROM_ABI range_error : public runtime_error { … };
class _LIBCPP_EXPORTED_FROM_ABI overflow_error : public runtime_error { … };
class _LIBCPP_EXPORTED_FROM_ABI underflow_error : public runtime_error { … };
}
_LIBCPP_BEGIN_NAMESPACE_STD
_LIBCPP_NORETURN _LIBCPP_EXPORTED_FROM_ABI void __throw_runtime_error(const char*);
_LIBCPP_NORETURN inline _LIBCPP_HIDE_FROM_ABI void __throw_logic_error(const char* __msg) { … }
_LIBCPP_NORETURN inline _LIBCPP_HIDE_FROM_ABI void __throw_domain_error(const char* __msg) { … }
_LIBCPP_NORETURN inline _LIBCPP_HIDE_FROM_ABI void __throw_invalid_argument(const char* __msg) { … }
_LIBCPP_NORETURN inline _LIBCPP_HIDE_FROM_ABI void __throw_length_error(const char* __msg) { … }
_LIBCPP_NORETURN inline _LIBCPP_HIDE_FROM_ABI void __throw_out_of_range(const char* __msg) { … }
_LIBCPP_NORETURN inline _LIBCPP_HIDE_FROM_ABI void __throw_range_error(const char* __msg) { … }
_LIBCPP_NORETURN inline _LIBCPP_HIDE_FROM_ABI void __throw_overflow_error(const char* __msg) { … }
_LIBCPP_NORETURN inline _LIBCPP_HIDE_FROM_ABI void __throw_underflow_error(const char* __msg) { … }
_LIBCPP_END_NAMESPACE_STD
#if !defined(_LIBCPP_REMOVE_TRANSITIVE_INCLUDES) && _LIBCPP_STD_VER <= 20
# include <cstdlib>
# include <exception>
# include <iosfwd>
#endif
#endif