I wrote an Error Code architecture that is incredibly easy to use across the org, and has stood the test of time.
Simply, you define errors like this:
[ValidationError] [ErrorEntity("ThisThing")]
public class MyErrors : ErrorCollection
{
static MyErrors() { Initialize(typeof(MyErrors)); }
[ErrorField("Id")]
public static readonly Error OMGTheDatabaseDidntLikeThatId;
[ErrorField("Name")]
public static readonly Error WhyDidYouUseThatName;
[SystemError]
public static readonly Error DatabaseNotFound;
}
There is a good chunk of crazy reflection stuff going on in the Initialize function (about 3 or 4 dozens lines of code), but it makes the syntax for defining and "throwing" this error really simple.
Initialize instantiates the Error objects with an error code based on the name of the field, and Entity, Field and Severity values based on attribution. The crazy part is that the Error class is a struct, so you can add more things to it at runtime (like an index, or a message) without affecting the "library" of error codes.
So, when you create an error (using an Error List class), you call code that looks like this:
Error.AddError(
MyErrors.WhyDidYouUseThatName,
1, // index
"this sucks" // message
);
This adds an Error object (yeah, the same type as stored in the ErrorCollection) with extra, runtime information, into a runtime collection to be returned to the caller.
I'm pretty proud of this design and the code behind it. It's been the standard for about a year now. It was even extended to incorporate some really neat database interaction with very little changes to the base code about 6 months later, without fundamentally changing the initial implementation.
Amazing code, to me, is code that implements a solid design which withstands the open-closed principle. It doesn't fundamentally change when it can take on new needs.