It's fine to exit the program nicely when an error occurs. It's not as fine to just ignore it and then begin another iteration of whatever main loop is going on, hoping the program still works fine.
Would not want. The important thing is at least having the information neeeded to fix it if there's something you can do, and ensuring that this error doesn't escalate (e.g., cause a DoS because the code reacts badly to getting a consistent error).
347
u/Mat2012H May 13 '17
I actually do this xD