1 // Copyright (C) 2001, 2002 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>
40 __throw_bad_exception(void)
41 { throw bad_exception(); }
44 __throw_bad_alloc(void)
45 { throw bad_alloc(); }
48 __throw_bad_cast(void)
52 __throw_bad_typeid(void)
53 { throw bad_typeid(); }
56 __throw_logic_error(const char* __s
)
57 { throw logic_error(__s
); }
60 __throw_domain_error(const char* __s
)
61 { throw domain_error(__s
); }
64 __throw_invalid_argument(const char* __s
)
65 { throw invalid_argument(__s
); }
68 __throw_length_error(const char* __s
)
69 { throw length_error(__s
); }
72 __throw_out_of_range(const char* __s
)
73 { throw out_of_range(__s
); }
76 __throw_runtime_error(const char* __s
)
77 { throw runtime_error(__s
); }
80 __throw_range_error(const char* __s
)
81 { throw range_error(__s
); }
84 __throw_overflow_error(const char* __s
)
85 { throw overflow_error(__s
); }
88 __throw_underflow_error(const char* __s
)
89 { throw underflow_error(__s
); }
92 __throw_ios_failure(const char* __s
)
93 { throw ios_base::failure(__s
); }
96 __throw_bad_exception(void)
100 __throw_bad_alloc(void)
104 __throw_bad_cast(void)
108 __throw_bad_typeid(void)
112 __throw_logic_error(const char*)
116 __throw_domain_error(const char*)
120 __throw_invalid_argument(const char*)
124 __throw_length_error(const char*)
128 __throw_out_of_range(const char*)
132 __throw_runtime_error(const char*)
136 __throw_range_error(const char*)
140 __throw_overflow_error(const char*)
144 __throw_underflow_error(const char*)
148 __throw_ios_failure(const char*)
150 #endif //__EXCEPTIONS