Does throw inside a catch ellipsis (...) rethrow the original error?
- by WilliamKF
If in my code I do the following snippet:
try {
doSomething();
} catch (...) {
doSomethingElse();
throw;
}
Will the throw rethrow the specific exception caught by the default ellipsis handler?