]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/libsupc++/exception
Licensing changes to GPLv3 resp. GPLv3 with GCC Runtime Exception.
[thirdparty/gcc.git] / libstdc++-v3 / libsupc++ / exception
CommitLineData
6305f20a 1// Exception Handling support header for -*- C++ -*-
d34786e3 2
c3f0f556 3// Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
5b9daa7e 4// 2004, 2005, 2006, 2007, 2008, 2009
d66ae36a 5// Free Software Foundation
e2c09482 6//
cbecceb9 7// This file is part of GCC.
6305f20a 8//
cbecceb9 9// GCC is free software; you can redistribute it and/or modify
6305f20a 10// it under the terms of the GNU General Public License as published by
748086b7 11// the Free Software Foundation; either version 3, or (at your option)
6305f20a
BK
12// any later version.
13//
cbecceb9 14// GCC is distributed in the hope that it will be useful,
6305f20a
BK
15// but WITHOUT ANY WARRANTY; without even the implied warranty of
16// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17// GNU General Public License for more details.
18//
748086b7
JJ
19// Under Section 7 of GPL version 3, you are granted additional
20// permissions described in the GCC Runtime Library Exception, version
21// 3.1, as published by the Free Software Foundation.
22
23// You should have received a copy of the GNU General Public License and
24// a copy of the GCC Runtime Library Exception along with this program;
25// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
26// <http://www.gnu.org/licenses/>.
6305f20a 27
669f7a03 28/** @file exception
78a53887 29 * This is a Standard C++ Library header.
669f7a03
PE
30 */
31
6305f20a
BK
32#ifndef __EXCEPTION__
33#define __EXCEPTION__
34
723acbd5
MM
35#pragma GCC visibility push(default)
36
3cbc7af0
BK
37#include <bits/c++config.h>
38
6305f20a
BK
39extern "C++" {
40
d34786e3
BK
41namespace std
42{
5b9daa7e
BK
43 /**
44 * @defgroup exceptions Exceptions
45 * @ingroup diagnostics
46 *
47 * Classes and functions for reporting errors via exception classes.
48 * @{
49 */
50
aa2d5ba2
PE
51 /**
52 * @brief Base class for all library exceptions.
53 *
54 * This is the base class for all exceptions thrown by the standard
669f7a03
PE
55 * library, and by certain language expressions. You are free to derive
56 * your own %exception classes, or use a different hierarchy, or to
57 * throw non-class data (e.g., fundamental types).
669f7a03 58 */
d34786e3
BK
59 class exception
60 {
61 public:
62 exception() throw() { }
f68147f7 63 virtual ~exception() throw();
949d9ae1 64
669f7a03
PE
65 /** Returns a C-style character string describing the general cause
66 * of the current error. */
d34786e3
BK
67 virtual const char* what() const throw();
68 };
6305f20a 69
669f7a03
PE
70 /** If an %exception is thrown which is not listed in a function's
71 * %exception specification, one of these may be thrown. */
d34786e3
BK
72 class bad_exception : public exception
73 {
74 public:
75 bad_exception() throw() { }
949d9ae1 76
e05cd3dd
PC
77 // This declaration is not useless:
78 // http://gcc.gnu.org/onlinedocs/gcc-3.0.2/gcc_6.html#SEC118
d66ae36a 79 virtual ~bad_exception() throw();
949d9ae1 80
c3f0f556
PC
81 // See comment in eh_exception.cc.
82 virtual const char* what() const throw();
d34786e3 83 };
6305f20a 84
669f7a03 85 /// If you write a replacement %terminate handler, it must be of this type.
d34786e3 86 typedef void (*terminate_handler) ();
949d9ae1 87
669f7a03 88 /// If you write a replacement %unexpected handler, it must be of this type.
d34786e3 89 typedef void (*unexpected_handler) ();
6305f20a 90
669f7a03 91 /// Takes a new handler function as an argument, returns the old function.
d34786e3 92 terminate_handler set_terminate(terminate_handler) throw();
949d9ae1 93
669f7a03 94 /** The runtime will call this function if %exception handling must be
bad38757 95 * abandoned for any reason. It can also be called by the user. */
d34786e3 96 void terminate() __attribute__ ((__noreturn__));
6305f20a 97
669f7a03 98 /// Takes a new handler function as an argument, returns the old function.
d34786e3 99 unexpected_handler set_unexpected(unexpected_handler) throw();
949d9ae1 100
669f7a03
PE
101 /** The runtime will call this function if an %exception is thrown which
102 * violates the function's %exception specification. */
d34786e3 103 void unexpected() __attribute__ ((__noreturn__));
6305f20a 104
669f7a03
PE
105 /** [18.6.4]/1: "Returns true after completing evaluation of a
106 * throw-expression until either completing initialization of the
107 * exception-declaration in the matching handler or entering @c unexpected()
108 * due to the throw; or after entering @c terminate() for any reason
109 * other than an explicit call to @c terminate(). [Note: This includes
110 * stack unwinding [15.2]. end note]"
111 *
112 * 2: "When @c uncaught_exception() is true, throwing an %exception can
113 * result in a call of @c terminate() (15.5.1)."
114 */
d34786e3 115 bool uncaught_exception() throw();
30a333ce 116
5b9daa7e 117 // @} group exceptions
6305f20a
BK
118} // namespace std
119
3cbc7af0
BK
120_GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx)
121
5b9daa7e
BK
122 /**
123 * @brief A replacement for the standard terminate_handler which
124 * prints more information about the terminating exception (if any)
125 * on stderr.
126 *
127 * @ingroup exceptions
128 *
129 * Call
130 * @code
131 * std::set_terminate(__gnu_cxx::__verbose_terminate_handler)
132 * @endcode
133 * to use. For more info, see
134 * http://gcc.gnu.org/onlinedocs/libstdc++/manual/bk01pt02ch06s02.html
135 *
136 * In 3.4 and later, this is on by default.
137 */
138 void __verbose_terminate_handler();
3cbc7af0
BK
139
140_GLIBCXX_END_NAMESPACE
74a3070f 141
6305f20a
BK
142} // extern "C++"
143
723acbd5
MM
144#pragma GCC visibility pop
145
30a333ce
PC
146#if (defined(__GXX_EXPERIMENTAL_CXX0X__) \
147 && defined(_GLIBCXX_ATOMIC_BUILTINS_4))
148#include <exception_ptr.h>
149#endif
150
6305f20a 151#endif