Edit

Share via


IDebugEngine2::RemoveSetException

Removes the specified exception so it is no longer handled by the debug engine.

Syntax

int RemoveSetException( 
   EXCEPTION_INFO[] pException
);

Parameters

pException
[in] An EXCEPTION_INFO structure that describes the exception to be removed.

Return Value

If successful, returns S_OK; otherwise, returns an error code.

Remarks

The exception being removed must have been previously set by an earlier call to the SetException method.

To remove all set exceptions at once, call the RemoveAllSetExceptions method.

See also