-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy path10-throw2.cpp
53 lines (50 loc) · 1.11 KB
/
10-throw2.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// 10-throw2.cpp : throw and catch exceptions from within and outside std::exception hierarchy
#include <iostream>
#include <exception>
#include <stdexcept>
using namespace std;
int throwing() {
cout << 1+R"(
Please choose:
1) throw std::runtime_error
2) throw std::exception
3) throw int
4) quit
Enter 1-4: )";
int option;
cin >> option;
switch(option) {
case 1:
throw runtime_error{"std::runtime_error thrown"};
case 2:
throw exception{};
case 3:
throw 99;
case 4:
return 1;
default:
cout << "Error: unrecognized option\n";
}
return 0;
}
int main() {
for (;;) {
int action{};
try {
action = throwing();
}
catch (runtime_error& e) {
cerr << "Caught std::runtime_error! (" << e.what() << ")\n";
}
catch (exception& e) {
cerr << "Caught std::exception!\n";
}
catch (...) {
cerr << "Caught something other than std::exception! Quitting.\n";
return 1;
}
if (action) {
break;
}
}
}