Visual Studio Code – Is there a way to check which line or function threw the exception I caught?
I work with code which looks similar to: try { f1(); f2(); f3(); } catch(Exception) { //... } If in Visual Studio I set a breakpoint within the catch block, is there a way for me to find out which…