Lines Matching refs:exception
14 #include <exception>
27 // If there might be an uncaught exception
33 // If there is an uncaught exception
56 // If the uncaught exception can be caught with std::exception&
58 static_cast<const __shim_type_info*>(&typeid(std::exception));
61 // Include the what() message from the exception
62 const std::exception* e = static_cast<const std::exception*>(thrown_object);
63 abort_message("terminating with %s exception of type %s: %s",
67 // Else just note that we're terminating with an exception
68 abort_message("terminating with %s exception of type %s",
72 // Else we're terminating with a foreign exception
73 abort_message("terminating with %s foreign exception", cause);