From Jason Turner

[expr.throw]

Diff to HTML by rtfpessoa

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
- Code that must be executed because of an exception, but cannot
24
- completely handle the exception itself, can be written like this:
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