upvote
I find it already tend sto do error handling theatre, utterly pointless error handling of deeply nested try/catches that could have been handled by a single one.

Won't this just make that even worse?

reply
It might be an architecture or programming language thing. And I use this prompt more for code reviews and debugging.

Also our error handling is a mix of Result and try-catch, and mixing between the two is bad. It does a good job of noticing when we cross the streams.

reply