First chance vs Second chance exception

后端 未结 1 526
臣服心动
臣服心动 2021-01-14 11:02

When I generate a dump file using ADPlus, I get both First chance and second chance exception but when I use task manager for generating dump file, I only get once dump file

1条回答
  •  走了就别回头了
    2021-01-14 11:20

    See here: http://blogs.msdn.com/b/davidklinems/archive/2005/07/12/438061.aspx

    In short, First chance exception gives the debugger a first chance to inspect the exception and application state before the application handles the exception.

    You can stop the debugger at this point (it' usually a setting like "break into debugger when exception is created". Often this is off by default). If you don't, or if you let the application continue to run, the exception is passed on to the application.

    The debugger gets a second chance at the exception when the application doesn't handle it. Again, you can break into the debugger here (this isusually on by default).

    Note that if the application doesn't handle the exception, the application will usually terminate.

    0 讨论(0)
提交回复
热议问题