Tagged Questions
25
votes
12answers
999 views
What are developer's problems with helpful error messages?
It continue to astounds me that, in this day and age, products that have years of use under their belt, built by teams of professionals, still to this day - fail to provide helpful error messages to ...
2
votes
1answer
55 views
Error handling, creating time line, need help defining what aspects of the environment need tracking
For my final year project, I'm working on a script that will run your python program and provide a time line of events(so far working on assignments) and create a story of what happened(the changes in ...
11
votes
9answers
1k views
What's the best way to manage error logging for exceptions?
Introduction
If an error occurs on a website or system, it is of course useful to log it, and show the user a polite message with a reference code for the error.
And if you have lots of systems, you ...
11
votes
8answers
1k views
In Java, what are checked exceptions good for?
Java's checked exceptions have gotten some bad press over the years. A telling sign is that it's literally the only language in the world that has them (not even other JVM languages like Groovy and ...