Approaches for Error Code/Message Management in .NET
- by WayneC
Looking for suggestions/best practices on managing error codes and messages in a multi-tiered applications. Specifically things like:
Where should error codes be defined? Enum? Class?
How are error messages or further details associated with the error codes? resource files? attributes on enum values, etc.?
If you have a multi-tier application…