vote up 10 vote down star
5

While this is more of a written language issue than a coding one, it is something that programmers must do in circumstances where copy is not provided by a client or someone else. Any examples of error messages, good or bad, are welcome to make the point.

I briefly searched and could not find a dupe thread. Ok, have at it. Thanks, all.

flag

20% accept rate
The five-tag limit prevented me from adding thrifty, brave, clean, and reverent as well. – __ Oct 11 '08 at 20:05
@[Thohan]: just create a boy-scout tag ;-) – Steven A. Lowe Oct 15 '08 at 16:35

15 Answers

vote up 7 vote down

First thing to ask:

  • Who is the audience for this message.

Good means very different things for end-users and other developers.

link|flag
vote up 7 vote down

Do you mean user-facing or in a log file for admin/dev staff?

I think these are important, in general:

  • Time-stamp
  • Severity level
  • what went wrong
  • Answer the questions "do I need to take action?" and "if so, what action?"
  • dev-level detail (not prominently, if user-facing)
  • consistent format and terms

I think all of these are important, but the prominence will change depending on the audience (as dmckee points out). Another tip (in general) is to answer the 5 W's (who, what, ... etc)

link|flag
vote up 6 vote down

For end users: Tell the user what to do. Should the user change some input value, retry in 5 minutes or call support?

link|flag
vote up 8 vote down
  • Apologise.
  • Say what went wrong.
  • Say how to resolve it.
  • Be polite.
  • The message should be worded so that the application accepts responsibility for the problem. Never blame or criticize the user or make them think it's their fault.

Example:
"Sorry, the file could not be opened. Please check that the file is not already opened by another program and try again."

If there are additional details that would scare the user such as an error number or something else only a developer would understand, don't show them. Write them to a log file, or have a details button that can be pressed to get to them.

I'm assuming you're talking about showing error messages to users in message boxes or on screen.

link|flag
Don't overdo the obsequiousness. How does a user check that a file is not already opened by another program? I really hate alert messages that force me to push "OK" when it is anything but OK in my view. – Jonathan Leffler Oct 11 '08 at 20:45
You're picking up on my specific example. I think the points I've raised apply in general. For this specific example, if you have better wording, please share it. If this occurred while trying to open a file, you can't just have the program crash or silently do nothing? – Scott Langham Oct 11 '08 at 20:49
I learnt these points in a uni course on user interface design, and recall that they were based on solid research. – Scott Langham Oct 11 '08 at 20:51
vote up 4 vote down

I work at a software security firm, so my answer may be significantly different from some of the above answers.

A good user facing error message is:

Balanced between being generic and specific - You want to give the user enough information that they can correct their error and move on, but keep in mind that an attacker could use these same error messages to attack your site. A good example of this is a login control in which an error message is returned “incorrect password for user joe” or “user joe does not exist in this system” this tells the attacker that they are on the path of discovering correct users. Which when you have neither a username or a password is half the battle.

Tells the user what went wrong – again this is balanced between generic and specific. A user never needs to see an ODBC error message, but it might be helpful for them to know that the error was your fault and that they should try again in a few minutes. Tell the user what they can do to help – if you have a backend logging system (which you should) log everything you think will be useful, then generate an ID that you can provide to the user so they can call or e-mail you and tell you exact repro steps. You could also automate this by exposing an bug submission form when an error happens.

Be consistent – use an error lookup table to ensure that all your errors are the same (for the same problem) and that they are well written. Typos, spelling mistakes and grammatical errors cannot be tolerated in production software.

link|flag
vote up 3 vote down

To what was already said I would add:

  • Do not present any messages that could be a security risk, like passwords and such. This is especially important for web apps, when such things are not already available through decompilation.
  • Please have all user-visible text proofread, if you are not already an obsessive grammar and spelling maven.
link|flag
vote up 1 vote down

Remember above all that the end user does not care about the technological nitty-gritty. Only whether it works. When it doesn't work, he or she only cares about its effect on what they are trying to do. A useful error message should stay focused on the what, not the why.

link|flag
vote up 1 vote down

Error messages should:

  • Be specific about what caused the error.
  • Offer suggestions for correcting the error.
  • Not use words that confuse the average user.

From a technical support point of voice, it's also important that error messages be unique. If a user can generate the same "file could not be opened" error in six different ways, it makes it difficult for technical support people to figure out exactly what the user is doing. So, error messages should be unique for each different kind of error and if possible supply an error code or number so that support people know where to look for the problem.

We've found that when error messages include an error code, it helps with technical support. When users report error messages back to support people, they often mix up or mis-report verbal error messages. But, if the message includes an error number they are very good at reporting the exact error, like "I got a 8512 error when I tried to print a report."

When possible, it also helps to keep a log of errors. Many times users will report errors when they tried a particular operation, but they won't remember exactly what the error was. If there is an error log that can be consulted by technical support people, it makes it far easier to determine the problem.

link|flag
vote up 2 vote down

To write good error messages, you need to think about each audience. Once you understand the audience, it's much easier to design the error messages.

First, requirements for end-user messages:

  • Wants to perform a task
  • Wants to know about solutions, not problems
  • Doesn’t actually want to see or read error messages.

Next, requirements for support technician messages:

  • Wants to be proactive, not reactive
  • Does not want to hit a “brick wall” problem
  • Does not want to be flooded with messages.

Finally, requirements for support developer messages:

  • Wants simple mental model for using your code
  • Expects your component to “just work”
  • Wants useful information when it doesn’t work.

An example of an error message that's very bad for an end-user, but that might be reasonable for a developer, is "Latency cache collided with outbound headers." :-)

link|flag
vote up 0 vote down

Much appreciated answers so far, looking for more, thanks.

link|flag
vote up 0 vote down

It's usually worth pointing towards a common reason for the problem as this will help the user in 99.9% of the error cases.

For example we have two directions for initialisation issues. One catches configuration exceptions which states:

"A recognised exception occured. This may be an issue with the configuration"

and another for unexpected:

"An unexpected error occured."

Then depending on the setting (dev switch on or off) we either output dev info or more end-user-friendly info ontop of that.

link|flag
vote up 0 vote down

There can be a few different contexts here to note(though I'm sure this has been mentioned over and over again):

1) If we are talking about a website having to give an "Oops, something bad happened," message then there should be simple language to tell the user that an error occured, please try again and if there are still issues to contact support at blah blah blah...

2) If we are talking about logging an exception thrown in code for sys admins and developers to read then the matter becomes more of taking the exception's message and stack trace to be recorded in either a log file, an e-mail, or the event viewer so that it can be handled differently depending on how urgent is it that someone looks into this.

3) If we are talking about writing the message for an exception then my suggestion is to clearly note what kind of error condition was met, e.g. is there a null reference where there shouldn't be or is there something worse like a file that should exist is missing, along with the severity of the error, e.g. can the application keep running or should it exit to an error page in this condition.

link|flag
vote up 0 vote down

Error messages are for end users and also for those who have to maintain the code

First for end users, tell them what to do. This can simply hit enter to continue, to try again, to close and restart, to reboot the PC.

Second for maintainers, include as much information about the error as you can. There is never too much. I personally prefer a log file for this instead of an error message. Even better is to include a way for the end user to e-mail you the log contents from the application.

link|flag
vote up -1 vote down

From the users' prospective.

link|flag
vote up 1 vote down

Obviously error prevention is best. Always provide the user with enough cues to successfully complete tasks (i.e. explain required formatting on data entry fields). However, "To err is human..." and (by applying the principles of usability to errors in a web application) forgiveness is the goal.

There are three essential functions to error messages:

1. Get attention - first, to ensure the effectiveness, the user must see it

  • color (red)
  • font (size, weight)
  • location (top of page, alert box)
  • focus (! symbol, outline of input box)
  • consistency (use similar format for error messages throughout the application)

2. Describe error - inform the user of what went wrong

  • use plain language that the user understands
  • use objective voice, don't blame user
  • be concise

3. Suggest recovery - give useful suggestions to fix the error and continue

  • preserve anything the user has completed so far
  • reduce the work needed to correct it
  • for logged in user, allow re-authentication on timeout

All that being said, I would love to compile something with more detail, and especially with examples of good and bad error messages.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.