How to create exception helpers? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T23:42:03Z http://stackoverflow.com/feeds/question/971278 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/971278/how-to-create-exception-helpers 1 How to create exception helpers? thecoop 2009-06-09T16:55:47Z 2009-11-03T08:08:05Z <p>I'm looking at creating a helper method to set an exception's message, automatically setting String.Format, adding in inner exceptions, setting commandline exit codes, etc; something like:</p> <pre><code>public static void MyExceptionHelper(ExitCode code, string message) {} public static void MyExceptionHelper(ExitCode code, Exception e) {} public static void MyExceptionHelper(ExitCode code, Exception e, String message) {} public static void MyExceptionHelper(ExitCode code, Exception e, String message, params object[] args) {} // etc... </code></pre> <p>The BCL has got a few static classes around that does that sort of thing (eg System.ThrowHelper in mscorlib).<br/> Where is the best place to put these? As overloaded constructors on the exception, in a separate static class (like the BCL), as static methods on the exception itself, or somewhere else?</p> http://stackoverflow.com/questions/971278/how-to-create-exception-helpers/971295#971295 1 Answer by Jon B for How to create exception helpers? Jon B 2009-06-09T16:59:27Z 2009-06-09T16:59:27Z <p>I'd just make these constructors for your exception class.</p> http://stackoverflow.com/questions/971278/how-to-create-exception-helpers/971305#971305 0 Answer by jrista for How to create exception helpers? jrista 2009-06-09T17:00:35Z 2009-06-09T17:00:35Z <p>Most of the time, the exception helpers in the BCL are there to support localization (which is usually wrapped up in the SR internal class you'll find in almost all .NET BCL assemblies.) The general idea is that you use a helper method to pass in some basic data for an exception, and the helper handles the retrieval of resources and formatting of data for you to create the exception. The benefit is that you centralize code for exceptions that may be thrown from multiple locations, but which need to be created in the same way. So generally, same idea as any other utility class or inherited object...promotes reuse and maintainability.</p> <p>As for where to put them...I like to have an "internal area" in each of my assemblies with an exception helper, resource helper, and other internal "assembly support" types. </p> http://stackoverflow.com/questions/971278/how-to-create-exception-helpers/971306#971306 2 Answer by Mark for How to create exception helpers? Mark 2009-06-09T17:00:51Z 2009-06-09T17:00:51Z <p>I'd recommend the Exception application block in <a href="http://msdn.microsoft.com/en-us/library/cc467894.aspx" rel="nofollow">EnterpriseLibrary</a>, it has a very elegant design for dealing with exceptions and if you don't want all of EntLib I'd recommend copying their interface.</p> http://stackoverflow.com/questions/971278/how-to-create-exception-helpers/971308#971308 0 Answer by John Fisher for How to create exception helpers? John Fisher 2009-06-09T17:01:24Z 2009-06-09T17:01:24Z <p>For methods like this, I prefer overloaded constructors. You're clearly using it to create a new object, and that's what a constructor is for. </p> <p>Once you get into the world of static methods, it's not always clear where they should end up. You'll need to analyze who will use them and how they will be used, then examine the pros and cons of each potential location. Then, you will know where to put them.</p> http://stackoverflow.com/questions/971278/how-to-create-exception-helpers/971315#971315 0 Answer by McWafflestix for How to create exception helpers? McWafflestix 2009-06-09T17:03:39Z 2009-06-09T17:03:39Z <p>This looks like you have enough custom behavior to want to derive your own exception class, and put this behavior on it. Depending on whether or not you want to interact with the base Exception sine qua Exception later on, you might want to have these be constructors on your derived class that set the base to the passed-in exception, and do your modifications on that exception from within your class; polymorphism will allow that instance to be recast up to a base Exception for interaction from there.</p>