Since I can't use Microsoft as an example for best practice since their exception messages are stored in resource files out of necessity, I am forced to ask where should exception messages be stored.

I figure it's probably one of common locations I thought of

  • Default resource file
  • Local constant
  • Class constant
  • Global exception message class
  • Inline as string literals
link|improve this question

feedback

4 Answers

up vote 9 down vote accepted

I may get shot (well, downvoted) for this, but why not "where you create the exception"?

throw new InvalidDataException("A wurble can't follow a flurble");

Unless you're going to internationalize the exception messages (which I suggest you don't) do you particularly need them to be constants etc? Where's the benefit?

link|improve this answer
While it might not be OK to show error message in a local language, it's necessary for Microsoft as the platform vendor. But for many projects, I have used string literals. However, I think if you really want to store it somewhere, it'd be the resource file, not constants or other kind of stuff. – Mehrdad Afshari Jan 23 '09 at 21:20
By error message, I meant the Exception.Message property. – Mehrdad Afshari Jan 23 '09 at 21:21
That's currently where many of the messages are, but this has led to slight variations in wordings for what are essentially the same exception. Additionally sometimes the messages are very wordy which can lead to it trailing off the screen. – Orion Adrian Jan 23 '09 at 21:21
Orion, In that case, I think you should use different exception classes that set the message in their constructor. This will unify the messages. – Mehrdad Afshari Jan 23 '09 at 21:23
@Orion: When you say they're "trailing off the screen" do you mean in the user interface? Exceptions aren't designed to be user-friendly; they're designed to be developer friendly. – Jon Skeet Jan 23 '09 at 21:35
show 7 more comments
feedback

If your exceptions are strongly typed, you don't need to worry about messages. Messages are for presenting errors to users, and exceptions are for controlling flow in exceptional cases.

throw new InvalidOperationException("The Nacho Ordering system is not responding.");

could become

throw new SystemNotRespondingException("Nacho Ordering");

In the latter case, there's nothing to translate, and therefore no need to worry about localization.

link|improve this answer
feedback

Out of necessity? It's to ease localization. To localize error messages in your applications, it's a great way.

link|improve this answer
Exception messages aren't generally the same thing as user-visible error messages. – Jon Skeet Jan 23 '09 at 21:17
feedback

If you are not going to show the exception messages to the user, then you need to keep them separate from the resource strings you do need to translate.

Either use string literals like Jon suggests or create a utility class to hold them if you have a lot of duplicate strings.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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