I am doing a little experiment based on something in my C++ book, I am testing throwing an exception in a exception handler. Exception handling is kinda new to me, so pardon any mistakes I am running ...
structured_exception() throw() : exception_pointer(NULL), info("Unknown SEH exception") {} structured_exception(EXCEPTION_POINTERS* ep) throw() : exception_pointer(ep ...