Lines Matching full:exception
37 class exception
40 exception() _LIBCXXRT_NOEXCEPT;
41 exception(const exception&) _LIBCXXRT_NOEXCEPT;
42 exception& operator=(const exception&) _LIBCXXRT_NOEXCEPT;
43 virtual ~exception();
49 * Bad allocation exception. Thrown by ::operator new() if it fails.
51 class bad_alloc: public exception
62 * Bad cast exception. Thrown by the __cxa_bad_cast() helper function.
64 class bad_cast: public exception {
76 class bad_typeid: public exception