_Unwind_DeleteException

Name

_Unwind_DeleteException -- private C++ error handling method

Synopsis

void _Unwind_DeleteException(struct _Unwind_Exception * object);

Description

_Unwind_DeleteException() deletes the given exception object. If a given runtime resumes normal execution after catching a foreign exception, it will not know how to delete that exception. Such an exception shall be deleted by calling _Unwind_DeleteException(). This is a convenience function that calls the function pointed to by the exception_cleanup field of the exception header.