I've got a series of breakpoints in my code on each Catch block to easily allow me to halt the program if something fails.
However, when another user checks out the page and adds code, my breakpoints aren't on the right spots any more. Say they add four lines of code, my breakpoints are not four lines before the catch blocks now.
I grasp that the data is local to me, and is based on line number and not contents of said line. Having said that, can anyone think of a way around that?
Indeed, having breakpoints at the catch blocks would be useful for ALL members of the team - is there a way to set, I dunno, universal breakpoints that everyone can see and use?