#include void MyWrappedFunction(void) { try { throw "In thrower"; } catch (const char * str) { cout<<"Exception"<< str << endl; } } int main() { MyWrappedFunction(); return 0; }