Mode:
Duration:
1
2
3
4
5
6
7
8
9
10
#include <iostream>
#include <stdexcept>
int main() {
try {
throw std::runtime_error("Something went wrong");
} catch (const std::exception& e) {
std::cout << "Caught exception: " << e.what() << std::endl;
}
return 0;
}Coding works best on desktop or with an external keyboard.