Content deleted Content added
No edit summary Tags: Mobile edit Mobile app edit iOS app edit App section source |
|||
Line 207:
try {
// do something (might throw an exception)
} catch (const std::runtime_error e) {
// handle a runtime_error e
} catch (const std::exception& e) {
//
} catch (...) {
// catches all
}
}
|