Skip to content

Instantly share code, notes, and snippets.

@ElemarJR
Created December 1, 2012 17:59
Show Gist options
  • Select an option

  • Save ElemarJR/4183608 to your computer and use it in GitHub Desktop.

Select an option

Save ElemarJR/4183608 to your computer and use it in GitHub Desktop.
void willRethrow() {
try {
willThrowException();
} catch (...) {
cout << "caught an exception! " << endl;
throw;
}
cout << "Never executed!";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment