2 Permission is granted to use, modify, and / or redistribute at will.
4 This includes removing authorship notices, re-use of code parts in
5 other software (with or without giving credit), and / or creating a
6 commercial product based on it.
8 This permission is not revocable by the author.
10 This software is provided as-is. Use it at your own risk. There is
11 no warranty whatsoever, neither expressed nor implied, and by using
12 this software you accept that the author(s) shall not be held liable
13 for any loss of data, loss of service, or other damages, be they
14 incidental or consequential. Your only option other than accepting
15 this is not to use the software at all.
17 #ifndef _LIGHTLIBCPP_EXCEPTION_HPP
18 #define _LIGHTLIBCPP_EXCEPTION_HPP
22 #include <lightlibc++/compiler.hpp>
28 /** \addtogroup lightlibcpp_18_7 */
33 * \brief Base class for exceptions thrown by the C++ Standard Library
35 * 18.7.1 Class exception
37 * Base class for exceptions thrown by the C++ Standard Library
40 * \brief Basisklasse der Ausnahmen, die von der C++ Standardbibliothek geworfen werden
42 * 18.7.1 Klasse exception
44 * Basisklasse der Ausnahmen, die von der C++ Standardbibliothek geworfen werden
52 * Constructs an object of class exception.
55 * Konstruiert ein Objekt der Klasse exception.
57 inline exception() throw()
63 * Copies an object of class exception.
64 * \param[in] x reference to the object to copy
67 * Kopiert ein Objekt der Klasse exception.
68 * \param[in] x Referenz auf das zu kopierende Objekt
70 inline exception(const exception
& x
) throw()
77 * Copies an object of class exception.
78 * \param[in] x reference to the object to copy
81 * Kopiert ein Objekt der Klasse exception.
82 * \param[in] x Referenz auf das zu kopierende Objekt
84 inline exception
& operator = (const exception
& x
) throw()
92 * Destructs an object of class exception
95 * Zerstört ein Objekt der Klasse exception
97 virtual ~exception() throw();
101 * User-friendly name of the class
102 * \return null-terminated character sequence
105 * Benutzerfreundlicher Name der Klasse
106 * \return nullterminierte Zeichenkette
109 virtual const char* what() const throw();
116 /** \addtogroup lightlibcpp_18_7_2 */
121 * \brief Class thrown by the runtime, when an exception-specification is
124 * 18.7.2.1 Class bad_exception
126 * Class thrown by the runtime, when an exception-specification is violated
129 * \brief Klasse die von der Laufzeit geworfen wird, wenn eine
130 * Ausnahmenspezifikation verletzt wurde
132 * 18.7.2.1 Klasse bad_exception
134 * Klasse die von der Laufzeit geworfen wird, wenn eine
135 * Ausnahmenspezifikation verletzt wurde
138 class bad_exception
: public std::exception
143 * Constructs an object of class bad_exception.
146 * Konstruiert ein Objekt der Klasse bad_exception.
148 inline bad_exception() throw()
154 * Copies an object of class bad_exception.
155 * \param[in] x reference to the object to copy
158 * Kopiert ein Objekt der Klasse bad_exception.
159 * \param[in] x Referenz auf das zu kopierende Objekt
161 inline bad_exception(const bad_exception
& x
) throw()
168 * Copies an object of class bad_exception.
169 * \param[in] x reference to the object to copy
172 * Kopiert ein Objekt der Klasse bad_exception.
173 * \param[in] x Referenz auf das zu kopierende Objekt
175 inline bad_exception
& operator = (const bad_exception
& x
) throw()
183 * Destructs an object of class bad_exception
186 * Zerstört ein Objekt der Klasse bad_exception
188 virtual ~bad_exception() throw();
190 virtual const char* what() const throw();
195 * 18.7.2.2 Type unexpected_handler
197 * The type of a handler function to be called by unexpected() when a
198 * function attempts to throw an exception not listed in its
199 * exception-specification.
201 * An unexpected_handler shall not return.
203 * The default unexpected_handler calls terminate().
206 * 18.7.2.2 Typ unexpected_handler
208 * Der Typ einer Handlerfunktion, welche von unexpected() aufgerufen wird,
209 * wenn eine Funktion eine Ausnahme, die nicht in ihrer
210 * Ausnahmenspezifikation angegeben ist, wirft.
212 * Ein unexpected_handler darf die Kontrolle nicht an die aufrufende
213 * Funktion zurückgeben.
215 * Der standardmäßig installierte unexpected_handler ruft terminate() auf.
218 typedef void (*unexpected_handler
)() _LIGHTLIBCPP_NORETURN
;
221 * 18.7.2.3 set_unexpected
224 * The unexpected_handler f becomes the new handler called by unexpected()
225 * \param[in] f a non-null pointer to the new unexpected_handler
226 * \return a pointer to the previous unexpected_handler
229 * Der unexpected_handler f wird der neue Handler, der von unexpected()
231 * \param[in] f ein gültiger Zeiger auf einen unexpected_handler
232 * \return ein Zeiger auf den vorhergehende unexpected_handler
235 unexpected_handler
set_unexpected(unexpected_handler f
) throw();
239 * lightlibc++ extension
241 * Get the current unexpected_handler
242 * \note This function is needed by the C++ exception handling ABI
243 * \return apointer to the current unexpected_handler
246 * lightlibc++ Erweiterung
248 * Gibt einen Zeiger auf momentan installierten unexpected_handler zurück
249 * \note Diese Funktion wird von der C++ Ausnahmebehandlungs-ABI benötigt
250 * \return ein Zeiger auf den momentan installierten unexpected_handler
253 unexpected_handler
__get_unexpected();
256 * 18.6.2.4 unexpected
259 * Called by the implementation when a function exits via an exception not
260 * allowed by its exception-specification. May also be called directly by the
263 * Calls the calls the current unexpected_handler.
266 * Diese Funktion wird vom der Laufzeit aufgerufen, falls eine Funktion eine
267 * Ausnahme, die nicht in ihrer Ausnahmenspezifikation angegeben ist, wirft.
268 * Diese Funktion darf auch direkt aus dem Programm aufgerufen werden.
270 * unexpected() ruft den momentanen unexpected_handler auf.
273 void unexpected() _LIGHTLIBCPP_NORETURN
;
279 /** \addtogroup lightlibcpp_18_7_3 */
284 * 18.7.3.1 Type terminate_handler
286 * The type of a handler function to be called by terminate() when
287 * terminating exception processing.
289 * A terminate_handler shall terminate execution of the program without
290 * returning to the caller.
292 * The default terminate_handler calls abort().
295 * 18.7.3.1 Typ terminate_handler
297 * Der Typ einer Handlerfunktion, welche von terminate() aufgerufen wird,
298 * wenn die Ausnahmebehandlung terminiert wird (durch den standardmäßig
299 * installierten unexpected_handler).
301 * Ein terminate_handler muss das Programm beenden ohne die Kontrolle zum
302 * Aufrufer zurückzugeben
304 * Der standardmäßig installierte terminate_handler ruft abort() auf.
307 typedef void (*terminate_handler
)() _LIGHTLIBCPP_NORETURN
;
310 * 18.7.3.2 set_terminate
313 * The terminate_handler f becomes the new handler called by terminate()
314 * \param[in] f a non-null pointer to the new terminate_handler
315 * \return a pointer to the previous terminate_handler
318 * Der terminate_handler f wird der neue Handler, der von terminate()
320 * \param[in] f ein gültiger Zeiger auf einen terminate_handler
321 * \return ein Zeiger auf den vorhergehende terminate_handler
324 terminate_handler
set_terminate(terminate_handler f
) throw();
328 * lightlibc++ extension
330 * Get the current terminate_handler
331 * \note This function is needed by the C++ exception handling ABI
332 * \return apointer to the current terminate_handler
335 * lightlibc++ Erweiterung
337 * Gibt einen Zeiger auf momentan installierten terminate_handler zurück
338 * \note Diese Funktion wird von der C++ Ausnahmebehandlungs-ABI benötigt
339 * \return ein Zeiger auf den momentan installierten terminate_handler
342 terminate_handler
__get_terminate();
348 * Called by the default unexpected_handler. May also be called directly by
351 * Calls the calls the current terminate_handler.
354 * Diese Funktion wird vom standardmäßig installierten unexpected_handler
355 * aufgerufen. Außerdem darf terminate() auch direkt aus dem Programm
358 * terminate() ruft den momentanen terminate_handler auf.
361 void terminate() _LIGHTLIBCPP_NORETURN
;
367 /** \addtogroup lightlibcpp_18_7 */
370 // TODO: bool uncaught_exception() throw(), implemented by the C++ ABI: Exception Handling patch
372 #ifdef _LIGHTLIBCPP_CPP10
373 // TODO C++1x: typedef \unspec exception_ptr;
374 // TODO C++1x: exception_ptr current_exception();
375 // TODO C++1x: void rethrow_exception(exception_ptr p);
376 // TODO C++1x: template<class E> exception_ptr copy_exception(E e);