Fix wrong markdown links in E.15 (#1522)

Fixed markdown links in E.15 which direct readers to Github repository, not currently viewing page
This commit is contained in:
Taewon Park 2019-09-27 23:45:07 +09:00 committed by Sergey Zubkov
parent fbb2fc6bb5
commit ef78ef4d88

View File

@ -15657,7 +15657,7 @@ Most handlers do not modify their exception and in general we [recommend use of
##### Note
To rethrow a caught exception use `throw;` not `throw e;`. Using `throw e;` would throw a new copy of `e` (sliced to the static type `std::exception`) instead of rethrowing the original exception of type `std::runtime_error`. (But keep [Don't try to catch every exception in every function](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Re-not-always) and [Minimize the use of explicit `try`/`catch`](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Re-catch) in mind.)
To rethrow a caught exception use `throw;` not `throw e;`. Using `throw e;` would throw a new copy of `e` (sliced to the static type `std::exception`) instead of rethrowing the original exception of type `std::runtime_error`. (But keep [Don't try to catch every exception in every function](#Re-not-always) and [Minimize the use of explicit `try`/`catch`](#Re-catch) in mind.)
##### Enforcement