0
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
| std::exception
std::logic_error -> std::exception
std::domain_error -> std::logic_error
std::invalid_argument -> std::logic_error
std::length_error -> std::logic_error
std::out_of_range -> std::logic_error
std::runtime_error -> std::exception
std::overflow_error -> std::runtime_error
std::underflow_error -> std::runtime_error
std::range_error -> std::runtime_error
std::bad_alloc -> std::exception
std::bad_cast -> std::exception
std::bad_typeid -> std::exception
std::bad_exception -> std::exception | |