You are viewing a single comment's thread. Return to all comments →
try { cout<< Server::compute(A, B) << endl; } catch (const bad_alloc& e) { cout << "Not enough memory" << endl; } catch (const exception& e) { cout << "Exception: " << e.what() << endl; } catch (...) { cout << "Other Exception" << endl; }
Seems like cookies are disabled on this browser, please enable them to open this website
Exceptional Server
You are viewing a single comment's thread. Return to all comments →