structured_exception() throw() : exception_pointer(NULL), info("Unknown SEH exception") {} structured_exception(EXCEPTION_POINTERS* ep) throw() : exception_pointer(ep ...
While working on a recent project, I found a piece of code that performed resource cleanup. Because it had many diverse calls, it could potentially throw six different exceptions. The original ...