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_8 */
31 #ifndef _LIGHTLIBCPP_NO_EXCEPTIONS
35 * \brief Base class for exceptions thrown by the C++ Standard Library
37 * 18.8.1 Class exception
39 * Base class for exceptions thrown by the C++ Standard Library
42 * \brief Basisklasse der Ausnahmen, die von der C++ Standardbibliothek geworfen werden
44 * 18.8.1 Klasse exception
46 * Basisklasse der Ausnahmen, die von der C++ Standardbibliothek geworfen werden
54 * Constructs an object of class exception.
57 * Konstruiert ein Objekt der Klasse exception.
59 inline exception() throw()
65 * Copies an object of class exception.
66 * \param[in] x reference to the object to copy
69 * Kopiert ein Objekt der Klasse exception.
70 * \param[in] x Referenz auf das zu kopierende Objekt
72 inline exception(const exception
& x
) throw()
79 * Copies an object of class exception.
80 * \param[in] x reference to the object to copy
83 * Kopiert ein Objekt der Klasse exception.
84 * \param[in] x Referenz auf das zu kopierende Objekt
86 inline exception
& operator = (const exception
& x
) throw()
94 * Destructs an object of class exception
97 * Zerstört ein Objekt der Klasse exception
99 virtual ~exception() throw();
103 * User-friendly name of the class
104 * \return null-terminated character sequence
107 * Benutzerfreundlicher Name der Klasse
108 * \return nullterminierte Zeichenkette
111 virtual const char* what() const throw();
120 /** \addtogroup lightlibcpp_18_8_2 */
123 #ifndef _LIGHTLIBCPP_NO_EXCEPTIONS
127 * \brief Class thrown by the runtime, when an exception-specification is
130 * 18.8.2.1 Class bad_exception
132 * Class thrown by the runtime, when an exception-specification is violated
135 * \brief Klasse die von der Laufzeit geworfen wird, wenn eine
136 * Ausnahmenspezifikation verletzt wurde
138 * 18.8.2.1 Klasse bad_exception
140 * Klasse die von der Laufzeit geworfen wird, wenn eine
141 * Ausnahmenspezifikation verletzt wurde
144 class bad_exception
: public std::exception
149 * Constructs an object of class bad_exception.
152 * Konstruiert ein Objekt der Klasse bad_exception.
154 inline bad_exception() throw()
160 * Copies an object of class bad_exception.
161 * \param[in] x reference to the object to copy
164 * Kopiert ein Objekt der Klasse bad_exception.
165 * \param[in] x Referenz auf das zu kopierende Objekt
167 inline bad_exception(const bad_exception
& x
) throw()
174 * Destructs an object of class bad_exception
177 * Zerstört ein Objekt der Klasse bad_exception
179 virtual ~bad_exception() throw();
181 virtual const char* what() const throw();
188 * 18.8.2.2 Type unexpected_handler
190 * The type of a handler function to be called by unexpected() when a
191 * function attempts to throw an exception not listed in its
192 * exception-specification.
194 * An unexpected_handler shall not return.
196 * The default unexpected_handler calls terminate().
199 * 18.8.2.2 Typ unexpected_handler
201 * Der Typ einer Handlerfunktion, welche von unexpected() aufgerufen wird,
202 * wenn eine Funktion eine Ausnahme, die nicht in ihrer
203 * Ausnahmenspezifikation angegeben ist, wirft.
205 * Ein unexpected_handler darf die Kontrolle nicht an die aufrufende
206 * Funktion zurückgeben.
208 * Der standardmäßig installierte unexpected_handler ruft terminate() auf.
211 typedef void (*unexpected_handler
)() _LIGHTLIBCPP_NORETURN
;
214 * 18.8.2.3 set_unexpected
217 * The unexpected_handler f becomes the new handler called by unexpected()
218 * \param[in] f a non-null pointer to the new unexpected_handler
219 * \return a pointer to the previous unexpected_handler
222 * Der unexpected_handler f wird der neue Handler, der von unexpected()
224 * \param[in] f ein gültiger Zeiger auf einen unexpected_handler
225 * \return ein Zeiger auf den vorhergehende unexpected_handler
228 unexpected_handler
set_unexpected(unexpected_handler f
) throw();
232 * lightlibc++ extension
234 * Get the current unexpected_handler
235 * \note This function is needed by the C++ exception handling ABI
236 * \return apointer to the current unexpected_handler
239 * lightlibc++ Erweiterung
241 * Gibt einen Zeiger auf momentan installierten unexpected_handler zurück
242 * \note Diese Funktion wird von der C++ Ausnahmebehandlungs-ABI benötigt
243 * \return ein Zeiger auf den momentan installierten unexpected_handler
246 unexpected_handler
__get_unexpected();
249 * 18.8.2.4 unexpected
252 * Called by the implementation when a function exits via an exception not
253 * allowed by its exception-specification. May also be called directly by the
256 * Calls the calls the current unexpected_handler.
259 * Diese Funktion wird vom der Laufzeit aufgerufen, falls eine Funktion eine
260 * Ausnahme, die nicht in ihrer Ausnahmenspezifikation angegeben ist, wirft.
261 * Diese Funktion darf auch direkt aus dem Programm aufgerufen werden.
263 * unexpected() ruft den momentanen unexpected_handler auf.
266 void unexpected() _LIGHTLIBCPP_NORETURN
;
272 /** \addtogroup lightlibcpp_18_8_3 */
277 * 18.8.3.1 Type terminate_handler
279 * The type of a handler function to be called by terminate() when
280 * terminating exception processing.
282 * A terminate_handler shall terminate execution of the program without
283 * returning to the caller.
285 * The default terminate_handler calls abort().
288 * 18.8.3.1 Typ terminate_handler
290 * Der Typ einer Handlerfunktion, welche von terminate() aufgerufen wird,
291 * wenn die Ausnahmebehandlung terminiert wird (durch den standardmäßig
292 * installierten unexpected_handler).
294 * Ein terminate_handler muss das Programm beenden ohne die Kontrolle zum
295 * Aufrufer zurückzugeben
297 * Der standardmäßig installierte terminate_handler ruft abort() auf.
300 typedef void (*terminate_handler
)() _LIGHTLIBCPP_NORETURN
;
303 * 18.8.3.2 set_terminate
306 * The terminate_handler f becomes the new handler called by terminate()
307 * \param[in] f a non-null pointer to the new terminate_handler
308 * \return a pointer to the previous terminate_handler
311 * Der terminate_handler f wird der neue Handler, der von terminate()
313 * \param[in] f ein gültiger Zeiger auf einen terminate_handler
314 * \return ein Zeiger auf den vorhergehende terminate_handler
317 terminate_handler
set_terminate(terminate_handler f
) throw();
321 * lightlibc++ extension
323 * Get the current terminate_handler
324 * \note This function is needed by the C++ exception handling ABI
325 * \return apointer to the current terminate_handler
328 * lightlibc++ Erweiterung
330 * Gibt einen Zeiger auf momentan installierten terminate_handler zurück
331 * \note Diese Funktion wird von der C++ Ausnahmebehandlungs-ABI benötigt
332 * \return ein Zeiger auf den momentan installierten terminate_handler
335 terminate_handler
__get_terminate();
341 * Called by the default unexpected_handler. May also be called directly by
344 * Calls the calls the current terminate_handler.
347 * Diese Funktion wird vom standardmäßig installierten unexpected_handler
348 * aufgerufen. Außerdem darf terminate() auch direkt aus dem Programm
351 * terminate() ruft den momentanen terminate_handler auf.
354 void terminate() _LIGHTLIBCPP_NORETURN
;
360 /** \addtogroup lightlibcpp_18_8 */
363 // TODO: bool uncaught_exception() throw(), implemented by the C++ ABI: Exception Handling patch
365 #ifdef _LIGHTLIBCPP_CPP10
366 // 18.8.5 Exception Propagation
367 // TODO C++1x: typedef \unspec exception_ptr;
368 // TODO C++1x: exception_ptr current_exception();
369 // TODO C++1x: void rethrow_exception(exception_ptr p);
370 // TODO C++1x: template<class E> exception_ptr copy_exception(E e);
372 // TODO 18.8.6 class nested_exception
373 // TODO template<class T> void throw_with_nested(T&& t); // [[noreturn]]
374 // TODO template <class E> void rethrow_if_nested(const E& e);