Tagged Questions

0
votes
1answer
51 views

How to interpret some of the Error messages from Xcode console?

Hi As my programs involves more and more code Im starting to get a bit frustrated with the error messages that are thrown in the console: 2009-11-14 14:31:57.513 FC[915:5b27] …
1
vote
2answers
55 views

Sort or Order Error Messags in error_messages (Rails)

Is there any (simple) way to get some control of the order in which a model's errors appear in the view? Ordering the rules does not seem to help whatsoever.
1
vote
2answers
82 views

Custom error handling ASP.NET

I want to use custom exception handling, for example instead of using (Exception ex) i want to use (LoginException ex) or (RegistrationException ex) or (SomeNameException ex) is …
3
votes
8answers
88 views

How much information in error messages to regular users?

I'm want to get an idea how I should handle end-user visible error messages in my web application. How much information do you give in error messages? Do you redirect all errors, …
9
votes
15answers
780 views

How does one write good error messages?

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. …
0
votes
4answers
742 views

English Error Messages in German Visual Studio 2008 / ASP.NET

This might be a bit weird question, but I'll give it a shot: HELP, my Visual Studio 2008 / ASP.NET is giving me GERMAN error messages. Besides the fact that translations tend to b …
3
votes
4answers
153 views

Should menu items always be enabled? And how do you tell the user?

So one of the things that has been talked about a few times on the podcast is whether menu items should always be enabled to prevent "WHY ISN'T THIS AVAILABLE!" frustration for the …
1
vote
1answer
77 views

What is the proper method for coding, then retrieving business rules static error (NOT exception messages) messages in an ASP.NET web application?

I've skinned this cat a few different ways over the last 6 years.. hardcoded strings, static classes with consts, and resource files. What approach do you use, and why? Bonus poin …