Skip to content

Commit 3321cd1

Browse files
author
p12
committed
Images: add inheritance diagrams for the missing exceptions
1 parent 23d7ee9 commit 3321cd1

10 files changed

Lines changed: 465 additions & 0 deletions
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
/*
2+
Copyright (C) 2012 p12 <tir5c3@yahoo.co.uk>
3+
4+
This file is part of cppreference-doc
5+
6+
This program is free software: you can redistribute it and/or modify
7+
it under the terms of the GNU General Public License as published by
8+
the Free Software Foundation, either version 3 of the License, or
9+
(at your option) any later version.
10+
11+
This program is distributed in the hope that it will be useful,
12+
but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
GNU General Public License for more details.
15+
16+
You should have received a copy of the GNU General Public License
17+
along with this program. If not, see http://www.gnu.org/licenses/.
18+
*/
19+
digraph inheritance {
20+
rankdir=LR
21+
22+
graph [dpi = 65, bgcolor=transparent];
23+
node [
24+
shape = box,
25+
fontname="DejaVu Sans, verdana, sans-serif", fontsize=14,
26+
width=1.6, height=0.5,
27+
style=filled, fillcolor=white
28+
];
29+
30+
e1 [
31+
label = "exception",
32+
tooltip = "std::exception",
33+
URL="cpp/error/exception"
34+
];
35+
36+
e2 [
37+
label = "bad_alloc",
38+
tooltip = "std::bad_alloc",
39+
fillcolor = lightgrey
40+
];
41+
42+
e1 -> e2;
43+
}​​
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
/*
2+
Copyright (C) 2012 p12 <tir5c3@yahoo.co.uk>
3+
4+
This file is part of cppreference-doc
5+
6+
This program is free software: you can redistribute it and/or modify
7+
it under the terms of the GNU General Public License as published by
8+
the Free Software Foundation, either version 3 of the License, or
9+
(at your option) any later version.
10+
11+
This program is distributed in the hope that it will be useful,
12+
but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
GNU General Public License for more details.
15+
16+
You should have received a copy of the GNU General Public License
17+
along with this program. If not, see http://www.gnu.org/licenses/.
18+
*/
19+
digraph inheritance {
20+
rankdir=LR
21+
22+
graph [dpi = 65, bgcolor=transparent];
23+
node [
24+
shape = box,
25+
fontname="DejaVu Sans, verdana, sans-serif", fontsize=14,
26+
width=1.6, height=0.5,
27+
style=filled, fillcolor=white
28+
];
29+
30+
e1 [
31+
label = "exception",
32+
tooltip = "std::exception",
33+
URL="cpp/error/exception"
34+
];
35+
36+
e2 [
37+
label = "bad_alloc",
38+
tooltip = "std::bad_alloc",
39+
URL="cpp/memory/new/bad_alloc"
40+
];
41+
42+
e3 [
43+
label = "bad_array_new_length",
44+
tooltip = "std::bad_array_new_length",
45+
fillcolor = lightgrey
46+
];
47+
48+
e1 -> e2;
49+
e2 -> e3;
50+
}​​
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
/*
2+
Copyright (C) 2012 p12 <tir5c3@yahoo.co.uk>
3+
4+
This file is part of cppreference-doc
5+
6+
This program is free software: you can redistribute it and/or modify
7+
it under the terms of the GNU General Public License as published by
8+
the Free Software Foundation, either version 3 of the License, or
9+
(at your option) any later version.
10+
11+
This program is distributed in the hope that it will be useful,
12+
but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
GNU General Public License for more details.
15+
16+
You should have received a copy of the GNU General Public License
17+
along with this program. If not, see http://www.gnu.org/licenses/.
18+
*/
19+
digraph inheritance {
20+
rankdir=LR
21+
22+
graph [dpi = 65, bgcolor=transparent];
23+
node [
24+
shape = box,
25+
fontname="DejaVu Sans, verdana, sans-serif", fontsize=14,
26+
width=1.6, height=0.5,
27+
style=filled, fillcolor=white
28+
];
29+
30+
e1 [
31+
label = "exception",
32+
tooltip = "std::exception",
33+
URL="cpp/error/exception"
34+
];
35+
36+
e2 [
37+
label = "bad_cast",
38+
tooltip = "std::bad_cast",
39+
fillcolor = lightgrey
40+
];
41+
42+
e1 -> e2;
43+
}​​
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
/*
2+
Copyright (C) 2012 p12 <tir5c3@yahoo.co.uk>
3+
4+
This file is part of cppreference-doc
5+
6+
This program is free software: you can redistribute it and/or modify
7+
it under the terms of the GNU General Public License as published by
8+
the Free Software Foundation, either version 3 of the License, or
9+
(at your option) any later version.
10+
11+
This program is distributed in the hope that it will be useful,
12+
but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
GNU General Public License for more details.
15+
16+
You should have received a copy of the GNU General Public License
17+
along with this program. If not, see http://www.gnu.org/licenses/.
18+
*/
19+
digraph inheritance {
20+
rankdir=LR
21+
22+
graph [dpi = 65, bgcolor=transparent];
23+
node [
24+
shape = box,
25+
fontname="DejaVu Sans, verdana, sans-serif", fontsize=14,
26+
width=1.6, height=0.5,
27+
style=filled, fillcolor=white
28+
];
29+
30+
e1 [
31+
label = "exception",
32+
tooltip = "std::exception",
33+
URL="cpp/error/exception"
34+
];
35+
36+
e2 [
37+
label = "bad_exception",
38+
tooltip = "std::bad_exception",
39+
fillcolor = lightgrey
40+
];
41+
42+
e1 -> e2;
43+
}​​
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
/*
2+
Copyright (C) 2012 p12 <tir5c3@yahoo.co.uk>
3+
4+
This file is part of cppreference-doc
5+
6+
This program is free software: you can redistribute it and/or modify
7+
it under the terms of the GNU General Public License as published by
8+
the Free Software Foundation, either version 3 of the License, or
9+
(at your option) any later version.
10+
11+
This program is distributed in the hope that it will be useful,
12+
but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
GNU General Public License for more details.
15+
16+
You should have received a copy of the GNU General Public License
17+
along with this program. If not, see http://www.gnu.org/licenses/.
18+
*/
19+
digraph inheritance {
20+
rankdir=LR
21+
22+
graph [dpi = 65, bgcolor=transparent];
23+
node [
24+
shape = box,
25+
fontname="DejaVu Sans, verdana, sans-serif", fontsize=14,
26+
width=1.6, height=0.5,
27+
style=filled, fillcolor=white
28+
];
29+
30+
e1 [
31+
label = "exception",
32+
tooltip = "std::exception",
33+
URL="cpp/error/exception"
34+
];
35+
36+
e2 [
37+
label = "bad_typeid",
38+
tooltip = "std::bad_typeid",
39+
fillcolor = lightgrey
40+
];
41+
42+
e1 -> e2;
43+
}​​
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
/*
2+
Copyright (C) 2012 p12 <tir5c3@yahoo.co.uk>
3+
4+
This file is part of cppreference-doc
5+
6+
This program is free software: you can redistribute it and/or modify
7+
it under the terms of the GNU General Public License as published by
8+
the Free Software Foundation, either version 3 of the License, or
9+
(at your option) any later version.
10+
11+
This program is distributed in the hope that it will be useful,
12+
but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
GNU General Public License for more details.
15+
16+
You should have received a copy of the GNU General Public License
17+
along with this program. If not, see http://www.gnu.org/licenses/.
18+
*/
19+
digraph inheritance {
20+
rankdir=LR
21+
22+
graph [dpi = 65, bgcolor=transparent];
23+
node [
24+
shape = box,
25+
fontname="DejaVu Sans, verdana, sans-serif", fontsize=14,
26+
width=1.6, height=0.5,
27+
style=filled, fillcolor=white
28+
];
29+
30+
e1 [
31+
label = "exception",
32+
tooltip = "std::exception",
33+
URL="cpp/error/exception"
34+
];
35+
36+
e2 [
37+
label = "bad_weak_ptr",
38+
tooltip = "std::bad_weak_ptr",
39+
fillcolor = lightgrey
40+
];
41+
42+
e1 -> e2;
43+
}​​
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
/*
2+
Copyright (C) 2012 p12 <tir5c3@yahoo.co.uk>
3+
4+
This file is part of cppreference-doc
5+
6+
This program is free software: you can redistribute it and/or modify
7+
it under the terms of the GNU General Public License as published by
8+
the Free Software Foundation, either version 3 of the License, or
9+
(at your option) any later version.
10+
11+
This program is distributed in the hope that it will be useful,
12+
but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
GNU General Public License for more details.
15+
16+
You should have received a copy of the GNU General Public License
17+
along with this program. If not, see http://www.gnu.org/licenses/.
18+
*/
19+
digraph inheritance {
20+
rankdir=LR
21+
22+
graph [dpi = 65, bgcolor=transparent];
23+
node [
24+
shape = box,
25+
fontname="DejaVu Sans, verdana, sans-serif", fontsize=14,
26+
width=1.6, height=0.5,
27+
style=filled, fillcolor=white
28+
];
29+
30+
e1 [
31+
label = "exception",
32+
tooltip = "std::exception",
33+
URL="cpp/error/exception"
34+
];
35+
36+
e2 [
37+
label = "logic_error",
38+
tooltip = "std::logic_error",
39+
URL="cpp/error/logic_error"
40+
];
41+
42+
e3 [
43+
label = "future_error",
44+
tooltip = "std::future_error",
45+
fillcolor = lightgrey
46+
];
47+
48+
e1 -> e2;
49+
e2 -> e3;
50+
}​​
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
/*
2+
Copyright (C) 2012 p12 <tir5c3@yahoo.co.uk>
3+
4+
This file is part of cppreference-doc
5+
6+
This program is free software: you can redistribute it and/or modify
7+
it under the terms of the GNU General Public License as published by
8+
the Free Software Foundation, either version 3 of the License, or
9+
(at your option) any later version.
10+
11+
This program is distributed in the hope that it will be useful,
12+
but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
GNU General Public License for more details.
15+
16+
You should have received a copy of the GNU General Public License
17+
along with this program. If not, see http://www.gnu.org/licenses/.
18+
*/
19+
digraph inheritance {
20+
rankdir=LR
21+
22+
graph [dpi = 65, bgcolor=transparent];
23+
node [
24+
shape = box,
25+
fontname="DejaVu Sans, verdana, sans-serif", fontsize=14,
26+
width=1.6, height=0.5,
27+
style=filled, fillcolor=white
28+
];
29+
30+
e1 [
31+
label = "exception",
32+
tooltip = "std::exception",
33+
URL="cpp/error/exception"
34+
];
35+
36+
e2 [
37+
label = "ios_base::failure",
38+
tooltip = "std::ios_base::failure",
39+
fillcolor = lightgrey
40+
];
41+
42+
e1 -> e2;
43+
}​​

0 commit comments

Comments
 (0)