tmp/tmppliq3cv3/{from.md → to.md}
RENAMED
|
@@ -18,12 +18,12 @@ exception [[except.handle]]. The exception is reactivated with the
|
|
| 18 |
existing exception object; no new exception object is created. The
|
| 19 |
exception is no longer considered to be caught.
|
| 20 |
|
| 21 |
[*Example 1*:
|
| 22 |
|
| 23 |
-
|
| 24 |
-
|
| 25 |
|
| 26 |
``` cpp
|
| 27 |
try {
|
| 28 |
// ...
|
| 29 |
} catch (...) { // catch all exceptions
|
|
|
|
| 18 |
existing exception object; no new exception object is created. The
|
| 19 |
exception is no longer considered to be caught.
|
| 20 |
|
| 21 |
[*Example 1*:
|
| 22 |
|
| 23 |
+
An exception handler that cannot completely handle the exception itself
|
| 24 |
+
can be written like this:
|
| 25 |
|
| 26 |
``` cpp
|
| 27 |
try {
|
| 28 |
// ...
|
| 29 |
} catch (...) { // catch all exceptions
|