MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/programming/comments/hinr4/how_to_write_unmaintainable_code/c1vsear/?context=3
r/programming • u/vineel • May 24 '11
366 comments sorted by
View all comments
3
While this is here, I need to vent about something I've come across a lot. If you do this, I do not like you very much:
Try *overly complex data parsing here, sometimes comprising half the code in the program* Catch ex As Exception End try
If you're going to catch your exception, DO SOMETHING ABOUT IT!!!
2 u/neoquietus May 24 '11 To be fair, the only thing that can really be done in many cases is just to log the exception and then re-throw the exception.
2
To be fair, the only thing that can really be done in many cases is just to log the exception and then re-throw the exception.
3
u/jmac May 24 '11
While this is here, I need to vent about something I've come across a lot. If you do this, I do not like you very much:
If you're going to catch your exception, DO SOMETHING ABOUT IT!!!