You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
catch (...) //here ellipsis matches any type of data
{
cout << "Exception is handled" << endl;
//one very good use for catch(...) is as the last catch of a cluster of catches. In this manner, it provides a useful default or "catch all" statement.