OSDN Git Service

2001-11-19 Phil Edwards <pme@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / libsupc++ / exception
1 // Exception Handling support header for -*- C++ -*-
2
3 // Copyright (C) 1995, 1996, 1997, 1998, 2000, 2001 Free Software Foundation
4 //
5 // This file is part of GNU CC.
6 //
7 // GNU CC is free software; you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by
9 // the Free Software Foundation; either version 2, or (at your option)
10 // any later version.
11 // 
12 // GNU CC is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU General Public License for more details.
16 // 
17 // You should have received a copy of the GNU General Public License
18 // along with GNU CC; see the file COPYING.  If not, write to
19 // the Free Software Foundation, 59 Temple Place - Suite 330,
20 // Boston, MA 02111-1307, USA.
21
22 // As a special exception, you may use this file as part of a free software
23 // library without restriction.  Specifically, if other files instantiate
24 // templates or use macros or inline functions from this file, or you compile
25 // this file and link it with other files to produce an executable, this
26 // file does not by itself cause the resulting executable to be covered by
27 // the GNU General Public License.  This exception does not however
28 // invalidate any other reasons why the executable file might be covered by
29 // the GNU General Public License.
30
31 /** @file exception
32  *  This header defines several types and functions relating to the
33  *  handling of exceptions in a C++ program.
34  */
35
36 #ifndef __EXCEPTION__
37 #define __EXCEPTION__
38
39 extern "C++" {
40
41 namespace std 
42 {
43   /** This is the base class for all exceptions thrown by the standard
44    *  library, and by certain language expressions.  You are free to derive
45    *  your own %exception classes, or use a different hierarchy, or to
46    *  throw non-class data (e.g., fundamental types).
47    *  @brief Base class for all library exceptions.
48    */
49   class exception 
50   {
51   public:
52     exception() throw() { }
53     virtual ~exception() throw();
54     /** Returns a C-style character string describing the general cause
55      *  of the current error.  */
56     virtual const char* what() const throw();
57   };
58
59   /** If an %exception is thrown which is not listed in a function's
60    *  %exception specification, one of these may be thrown.  */
61   class bad_exception : public exception 
62   {
63   public:
64     bad_exception() throw() { }
65     virtual ~bad_exception() throw();
66   };
67
68   /// If you write a replacement %terminate handler, it must be of this type.
69   typedef void (*terminate_handler) ();
70   /// If you write a replacement %unexpected handler, it must be of this type.
71   typedef void (*unexpected_handler) ();
72
73   /// Takes a new handler function as an argument, returns the old function.
74   terminate_handler set_terminate(terminate_handler) throw();
75   /** The runtime will call this function if %exception handling must be
76    *  abandoned for any reason.  */
77   void terminate() __attribute__ ((__noreturn__));
78
79   /// Takes a new handler function as an argument, returns the old function.
80   unexpected_handler set_unexpected(unexpected_handler) throw();
81   /** The runtime will call this function if an %exception is thrown which
82    *  violates the function's %exception specification.  */
83   void unexpected() __attribute__ ((__noreturn__));
84
85   /** [18.6.4]/1:  "Returns true after completing evaluation of a
86    *  throw-expression until either completing initialization of the
87    *  exception-declaration in the matching handler or entering @c unexpected()
88    *  due to the throw; or after entering @c terminate() for any reason
89    *  other than an explicit call to @c terminate().  [Note: This includes
90    *  stack unwinding [15.2].  end note]"
91    *
92    *  2:  "When @c uncaught_exception() is true, throwing an %exception can
93    *  result in a call of @c terminate() (15.5.1)."
94    */
95   bool uncaught_exception() throw();
96 } // namespace std
97
98 namespace __gnu_cxx
99 {
100   /** A replacement for the standard terminate_handler which prints more
101       information about the terminating exception (if any) on stderr.  */
102   void verbose_terminate_handler ();
103 } // namespace __gnu_cxx
104   
105 } // extern "C++"
106
107 #endif