blob: ef5de595f032f6deb66acca95e9a03fe0919524c [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001// -*- C++ -*-
2//===--------------------------- stdexcept --------------------------------===//
3//
Howard Hinnantf5256e12010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00006// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00008//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_STDEXCEPT
12#define _LIBCPP_STDEXCEPT
13
14/*
15 stdexcept synopsis
16
17namespace std
18{
19
20class logic_error;
21 class domain_error;
22 class invalid_argument;
23 class length_error;
24 class out_of_range;
25class runtime_error;
26 class range_error;
27 class overflow_error;
28 class underflow_error;
29
30for each class xxx_error:
31
32class xxx_error : public exception // at least indirectly
33{
34public:
35 explicit xxx_error(const string& what_arg);
Howard Hinnant1e15fd12011-05-26 19:48:01 +000036 explicit xxx_error(const char* what_arg);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000037
Howard Hinnant1e15fd12011-05-26 19:48:01 +000038 virtual const char* what() const noexcept // returns what_arg
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000039};
40
41} // std
42
43*/
44
45#include <__config>
46#include <exception>
47#include <iosfwd> // for string forward decl
48
Howard Hinnant08e17472011-10-17 20:05:10 +000049#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000050#pragma GCC system_header
Howard Hinnant08e17472011-10-17 20:05:10 +000051#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000052
53namespace std // purposefully not using versioning namespace
54{
55
56class _LIBCPP_EXCEPTION_ABI logic_error
57 : public exception
58{
59private:
60 void* __imp_;
61public:
62 explicit logic_error(const string&);
63 explicit logic_error(const char*);
64
Howard Hinnant1e15fd12011-05-26 19:48:01 +000065 logic_error(const logic_error&) _NOEXCEPT;
66 logic_error& operator=(const logic_error&) _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000067
Howard Hinnant1e15fd12011-05-26 19:48:01 +000068 virtual ~logic_error() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000069
Howard Hinnant1e15fd12011-05-26 19:48:01 +000070 virtual const char* what() const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000071};
72
73class _LIBCPP_EXCEPTION_ABI runtime_error
74 : public exception
75{
76private:
77 void* __imp_;
78public:
79 explicit runtime_error(const string&);
80 explicit runtime_error(const char*);
81
Howard Hinnant1e15fd12011-05-26 19:48:01 +000082 runtime_error(const runtime_error&) _NOEXCEPT;
83 runtime_error& operator=(const runtime_error&) _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000084
Howard Hinnant1e15fd12011-05-26 19:48:01 +000085 virtual ~runtime_error() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000086
Howard Hinnant1e15fd12011-05-26 19:48:01 +000087 virtual const char* what() const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000088};
89
90class _LIBCPP_EXCEPTION_ABI domain_error
91 : public logic_error
92{
93public:
94 _LIBCPP_INLINE_VISIBILITY explicit domain_error(const string& __s) : logic_error(__s) {}
95 _LIBCPP_INLINE_VISIBILITY explicit domain_error(const char* __s) : logic_error(__s) {}
96
Howard Hinnant1e15fd12011-05-26 19:48:01 +000097 virtual ~domain_error() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000098};
99
100class _LIBCPP_EXCEPTION_ABI invalid_argument
101 : public logic_error
102{
103public:
104 _LIBCPP_INLINE_VISIBILITY explicit invalid_argument(const string& __s) : logic_error(__s) {}
105 _LIBCPP_INLINE_VISIBILITY explicit invalid_argument(const char* __s) : logic_error(__s) {}
106
Howard Hinnant1e15fd12011-05-26 19:48:01 +0000107 virtual ~invalid_argument() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000108};
109
110class _LIBCPP_EXCEPTION_ABI length_error
111 : public logic_error
112{
113public:
114 _LIBCPP_INLINE_VISIBILITY explicit length_error(const string& __s) : logic_error(__s) {}
115 _LIBCPP_INLINE_VISIBILITY explicit length_error(const char* __s) : logic_error(__s) {}
116
Howard Hinnant1e15fd12011-05-26 19:48:01 +0000117 virtual ~length_error() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000118};
119
120class _LIBCPP_EXCEPTION_ABI out_of_range
121 : public logic_error
122{
123public:
124 _LIBCPP_INLINE_VISIBILITY explicit out_of_range(const string& __s) : logic_error(__s) {}
125 _LIBCPP_INLINE_VISIBILITY explicit out_of_range(const char* __s) : logic_error(__s) {}
126
Howard Hinnant1e15fd12011-05-26 19:48:01 +0000127 virtual ~out_of_range() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000128};
129
130class _LIBCPP_EXCEPTION_ABI range_error
131 : public runtime_error
132{
133public:
134 _LIBCPP_INLINE_VISIBILITY explicit range_error(const string& __s) : runtime_error(__s) {}
135 _LIBCPP_INLINE_VISIBILITY explicit range_error(const char* __s) : runtime_error(__s) {}
136
Howard Hinnant1e15fd12011-05-26 19:48:01 +0000137 virtual ~range_error() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000138};
139
140class _LIBCPP_EXCEPTION_ABI overflow_error
141 : public runtime_error
142{
143public:
144 _LIBCPP_INLINE_VISIBILITY explicit overflow_error(const string& __s) : runtime_error(__s) {}
145 _LIBCPP_INLINE_VISIBILITY explicit overflow_error(const char* __s) : runtime_error(__s) {}
146
Howard Hinnant1e15fd12011-05-26 19:48:01 +0000147 virtual ~overflow_error() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000148};
149
150class _LIBCPP_EXCEPTION_ABI underflow_error
151 : public runtime_error
152{
153public:
154 _LIBCPP_INLINE_VISIBILITY explicit underflow_error(const string& __s) : runtime_error(__s) {}
155 _LIBCPP_INLINE_VISIBILITY explicit underflow_error(const char* __s) : runtime_error(__s) {}
156
Howard Hinnant1e15fd12011-05-26 19:48:01 +0000157 virtual ~underflow_error() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000158};
159
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000160} // std
161
162#endif // _LIBCPP_STDEXCEPT