Possible to make VisualStudio stop breaking on errors caught by try/catch while debugging?

Hey
In Visual Studio19, I can only figure out how to make it ignore the error in general, but I don't want to do that because I obviously want to catch the errors that aren't handled, but I want to stop getting interrupted while debugging when there are errors I know are handled in try/catch blocks. I can't seem to find out if this is possible.
Please help me with this.
https://coomingle.com https://omegle.club
Thanks
Last edited on
Under Debug > Windows > Exception Settings, uncheck everything in the "C++ Exceptions" subtree. This will cause the debugger not to break under all first-chance exceptions, but it will continue breaking on uncaught exceptions. I'm not sure if that last behavior is configurable.
Topic archived. No new replies allowed.