How to nicely inform to the user that an unknown error has happened?

Posted by Jaime Soriano on Stack Overflow See other posts from Stack Overflow or by Jaime Soriano
Published on 2010-05-28T09:10:49Z Indexed on 2010/05/28 9:11 UTC
Read the original article Hit count: 205

There are several guidelines for error reporting, that are usually based on giving to the user useful information when he or she does something wrong, but to give this kind of information you need to be handling the error and know that it can happen. There are also tons of articles about designing 404 error pages. But, what can you do when it's a new, unhandled error provoked by a failure in the shoftware?

Are there some guidelines about how to nicely report totally unexpected errors in a web site, as an unexpected error 500?

What header message should be shown in that case? something like "Sorry, an unexpected error has ocurred" would be enough?

What information should be given?

Should it have mechanisms to help to report the failure to developers? Which ones?

© Stack Overflow or respective owner

Related posts about best-practices

Related posts about web-development