1 // Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
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 2, or (at your option)
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.
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING. If not, write to the Free
16 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19 // As a special exception, you may use this file as part of a free software
20 // library without restriction. Specifically, if other files instantiate
21 // templates or use macros or inline functions from this file, or you compile
22 // this file and link it with other files to produce an executable, this
23 // file does not by itself cause the resulting executable to be covered by
24 // the GNU General Public License. This exception does not however
25 // invalidate any other reasons why the executable file might be covered by
26 // the GNU General Public License.
28 #include <bits/functexcept.h>
32 #include <system_error>
37 #ifdef _GLIBCXX_USE_NLS
39 # define _(msgid) gettext (msgid)
41 # define _(msgid) (msgid)
44 _GLIBCXX_BEGIN_NAMESPACE(std
)
48 __throw_bad_exception(void)
49 { throw bad_exception(); }
52 __throw_bad_alloc(void)
53 { throw bad_alloc(); }
56 __throw_bad_cast(void)
60 __throw_bad_typeid(void)
61 { throw bad_typeid(); }
64 __throw_logic_error(const char* __s
)
65 { throw logic_error(_(__s
)); }
68 __throw_domain_error(const char* __s
)
69 { throw domain_error(_(__s
)); }
72 __throw_invalid_argument(const char* __s
)
73 { throw invalid_argument(_(__s
)); }
76 __throw_length_error(const char* __s
)
77 { throw length_error(_(__s
)); }
80 __throw_out_of_range(const char* __s
)
81 { throw out_of_range(_(__s
)); }
84 __throw_runtime_error(const char* __s
)
85 { throw runtime_error(_(__s
)); }
88 __throw_range_error(const char* __s
)
89 { throw range_error(_(__s
)); }
92 __throw_overflow_error(const char* __s
)
93 { throw overflow_error(_(__s
)); }
96 __throw_underflow_error(const char* __s
)
97 { throw underflow_error(_(__s
)); }
100 __throw_system_error(const char* __s
)
101 { throw system_error(error_code(), _(__s
)); }
104 __throw_system_error(int __i
)
105 { throw system_error(error_code(__i
, generic_category
)); }
108 __throw_ios_failure(const char* __s
)
109 { throw ios_base::failure(_(__s
)); }
112 __throw_bad_exception(void)
116 __throw_bad_alloc(void)
120 __throw_bad_cast(void)
124 __throw_bad_typeid(void)
128 __throw_logic_error(const char*)
132 __throw_domain_error(const char*)
136 __throw_invalid_argument(const char*)
140 __throw_length_error(const char*)
144 __throw_out_of_range(const char*)
148 __throw_runtime_error(const char*)
152 __throw_range_error(const char*)
156 __throw_overflow_error(const char*)
160 __throw_underflow_error(const char*)
164 __throw_system_error(const char* __s
)
168 __throw_system_error(int __i
)
172 __throw_ios_failure(const char*)
174 #endif //__EXCEPTIONS
176 _GLIBCXX_END_NAMESPACE