Skip to content

Instantly share code, notes, and snippets.

@kalman5
Last active August 29, 2015 14:01
Show Gist options
  • Select an option

  • Save kalman5/b0d915060194f4f112ee to your computer and use it in GitHub Desktop.

Select an option

Save kalman5/b0d915060194f4f112ee to your computer and use it in GitHub Desktop.
#include <stdexcept>
class Bomb {
public:
~Bomb() { throw std::runtime_error("BOOM"); }
};
int main()
try {
Bomb b;
}
catch(...) {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment