Microsoft SDK for Java

IRemoteThreadEx::
PassExceptionToDebuggee

The PassExceptionToDebuggee method of the IRemoteThreadEx interface is used to control how exceptions are handled during an ExceptionEventEx call. If this method is called with FALSE as its parameter, the Microsoft VM ignores the exception that just occurred, hiding it from the process being debugged. If this method is called with TRUE as its parameter, the Microsoft VM passes the exception that just occurred to the debuggee, as usual. This method should only be called during an ExceptionEventEx callback.

Syntax

HRESULT PassExceptionToDebuggee(BOOL fPass)

Parameters

[in] fPass  Set to FALSE to have the Microsoft VM ignore the exception that just occurred; set to TRUE to have exception handling occur normally.

Return Value

S_OK Success. 

© 1999 Microsoft Corporation. All rights reserved. Terms of use.