unix.c (find_file): Add variable id conditionally for mingw targets.
[gcc.git] / libstdc++-v3 / src / functexcept.cc
1 // Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc.
2 //
3 // This file is part of the GNU ISO C++ Library. This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 3, or (at your option)
7 // any later version.
8
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
13
14 // Under Section 7 of GPL version 3, you are granted additional
15 // permissions described in the GCC Runtime Library Exception, version
16 // 3.1, as published by the Free Software Foundation.
17
18 // You should have received a copy of the GNU General Public License and
19 // a copy of the GCC Runtime Library Exception along with this program;
20 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
21 // <http://www.gnu.org/licenses/>.
22
23 #include <bits/functexcept.h>
24 #include <cstdlib>
25 #include <exception>
26 #include <stdexcept>
27 #include <new>
28 #include <typeinfo>
29 #include <ios>
30 #include <system_error>
31 #include <future>
32
33 #ifdef _GLIBCXX_USE_NLS
34 # include <libintl.h>
35 # define _(msgid) gettext (msgid)
36 #else
37 # define _(msgid) (msgid)
38 #endif
39
40 _GLIBCXX_BEGIN_NAMESPACE(std)
41
42 #if __EXCEPTIONS
43 void
44 __throw_bad_exception(void)
45 { throw bad_exception(); }
46
47 void
48 __throw_bad_alloc(void)
49 { throw bad_alloc(); }
50
51 void
52 __throw_bad_cast(void)
53 { throw bad_cast(); }
54
55 void
56 __throw_bad_typeid(void)
57 { throw bad_typeid(); }
58
59 void
60 __throw_logic_error(const char* __s)
61 { throw logic_error(_(__s)); }
62
63 void
64 __throw_domain_error(const char* __s)
65 { throw domain_error(_(__s)); }
66
67 void
68 __throw_invalid_argument(const char* __s)
69 { throw invalid_argument(_(__s)); }
70
71 void
72 __throw_length_error(const char* __s)
73 { throw length_error(_(__s)); }
74
75 void
76 __throw_out_of_range(const char* __s)
77 { throw out_of_range(_(__s)); }
78
79 void
80 __throw_runtime_error(const char* __s)
81 { throw runtime_error(_(__s)); }
82
83 void
84 __throw_range_error(const char* __s)
85 { throw range_error(_(__s)); }
86
87 void
88 __throw_overflow_error(const char* __s)
89 { throw overflow_error(_(__s)); }
90
91 void
92 __throw_underflow_error(const char* __s)
93 { throw underflow_error(_(__s)); }
94
95 void
96 __throw_ios_failure(const char* __s)
97 { throw ios_base::failure(_(__s)); }
98
99 void
100 __throw_system_error(int __i)
101 { throw system_error(error_code(__i, generic_category())); }
102
103 void
104 __throw_future_error(int __i)
105 { throw future_error(future_errc(__i)); }
106
107 #else
108 void
109 __throw_bad_exception(void)
110 { std::abort(); }
111
112 void
113 __throw_bad_alloc(void)
114 { std::abort(); }
115
116 void
117 __throw_bad_cast(void)
118 { std::abort(); }
119
120 void
121 __throw_bad_typeid(void)
122 { std::abort(); }
123
124 void
125 __throw_logic_error(const char*)
126 { std::abort(); }
127
128 void
129 __throw_domain_error(const char*)
130 { std::abort(); }
131
132 void
133 __throw_invalid_argument(const char*)
134 { std::abort(); }
135
136 void
137 __throw_length_error(const char*)
138 { std::abort(); }
139
140 void
141 __throw_out_of_range(const char*)
142 { std::abort(); }
143
144 void
145 __throw_runtime_error(const char*)
146 { std::abort(); }
147
148 void
149 __throw_range_error(const char*)
150 { std::abort(); }
151
152 void
153 __throw_overflow_error(const char*)
154 { std::abort(); }
155
156 void
157 __throw_underflow_error(const char*)
158 { std::abort(); }
159
160 void
161 __throw_ios_failure(const char*)
162 { std::abort(); }
163
164 void
165 __throw_system_error(int)
166 { std::abort(); }
167
168 void
169 __throw_future_error(int)
170 { std::abort(); }
171
172 #endif //__EXCEPTIONS
173
174 _GLIBCXX_END_NAMESPACE