====== C - C++ Exception Handling - Standard Exceptions ====== #include #include #include class A {}; int main () { try { A * a = NULL; typeid (*a); } catch (std::exception& e) { cout << "Exception: " << e.what(); } return 0; }