I have some code in a try-catch block, which may throw exceptions.
The exception is handled in the catch block.
The code works under VS 2017. However, switched to VS2019, the debugger won't continue (see screenshot)
How can I tell the debugger no to break at already handled exceptions ?
[Edit]
In this particular case, the exception can easily be avoided with more careful code, or disabled by unchecking the "Break when this exception type is thrown".
However it is NOT my question.
My question is :
Why VS 2019 breaks at alrady handled exceptions ?
How can I tell it no to do so ?

