1 // Copyright (C) 2001, 2002, 2003 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, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
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>
35 #ifdef _GLIBCXX_USE_NLS
37 # define _(msgid) gettext (msgid)
39 # define _(msgid) (msgid)
46 __throw_bad_exception(void)
47 { throw bad_exception(); }
50 __throw_bad_alloc(void)
51 { throw bad_alloc(); }
54 __throw_bad_cast(void)
58 __throw_bad_typeid(void)
59 { throw bad_typeid(); }
62 __throw_logic_error(const char* __s
)
63 { throw logic_error(_(__s
)); }
66 __throw_domain_error(const char* __s
)
67 { throw domain_error(_(__s
)); }
70 __throw_invalid_argument(const char* __s
)
71 { throw invalid_argument(_(__s
)); }
74 __throw_length_error(const char* __s
)
75 { throw length_error(_(__s
)); }
78 __throw_out_of_range(const char* __s
)
79 { throw out_of_range(_(__s
)); }
82 __throw_runtime_error(const char* __s
)
83 { throw runtime_error(_(__s
)); }
86 __throw_range_error(const char* __s
)
87 { throw range_error(_(__s
)); }
90 __throw_overflow_error(const char* __s
)
91 { throw overflow_error(_(__s
)); }
94 __throw_underflow_error(const char* __s
)
95 { throw underflow_error(_(__s
)); }
98 __throw_ios_failure(const char* __s
)
99 { throw ios_base::failure(_(__s
)); }
102 __throw_bad_exception(void)
106 __throw_bad_alloc(void)
110 __throw_bad_cast(void)
114 __throw_bad_typeid(void)
118 __throw_logic_error(const char*)
122 __throw_domain_error(const char*)
126 __throw_invalid_argument(const char*)
130 __throw_length_error(const char*)
134 __throw_out_of_range(const char*)
138 __throw_runtime_error(const char*)
142 __throw_range_error(const char*)
146 __throw_overflow_error(const char*)
150 __throw_underflow_error(const char*)
154 __throw_ios_failure(const char*)
156 #endif //__EXCEPTIONS