Lines Matching refs:exception
26 /** @file exception
48 * Classes and functions for reporting errors via exception classes.
57 * your own %exception classes, or use a different hierarchy, or to
60 class exception
63 exception() _GLIBCXX_USE_NOEXCEPT { }
64 virtual ~exception() _GLIBCXX_TXN_SAFE_DYN _GLIBCXX_USE_NOEXCEPT;
72 /** If an %exception is thrown which is not listed in a function's
73 * %exception specification, one of these may be thrown. */
74 class bad_exception : public exception
102 /** The runtime will call this function if %exception handling must be
114 /** The runtime will call this function if an %exception is thrown which
115 * violates the function's %exception specification. */
120 * exception-declaration in the matching handler or entering @c unexpected()
126 * %exception can result in a call of @c terminate()
146 * prints more information about the terminating exception (if any)