Microsoft Visual Studio Debugger (Exception Thrown) Dialog Box

An exception has occurred in your program. You can choose between the following options for handling the exception:

Break

Execution will break into the debugger. The exception handler is not invoked prior to the break. If you continue from the break, the exception handler will be invoked.

Continue

Allows execution to continue, giving the execution handler a chance to handle the exception. This option may be disabled for certain types of exceptions.

Ignore

Allows execution to continue without invoking the execution handler. Because the exception handler is not invoked, this can lead to further consequences, including additional exceptions and errors. This option may be disabled for certain types of exceptions.