C++ Tutorial/Exceptions/standard exceptions
standard exceptions
#include <iostream.h>
#include <exception>
#include <typeinfo>
class A {};
int main () {
try {
A * a = NULL;
typeid (*a);
}
catch (std::exception& e)
{
cout << "Exception: " << e.what();
}
return 0;
}