What are some best practices for creating my own custom exception? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T19:57:42Z http://stackoverflow.com/feeds/question/54851 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/54851/what-are-some-best-practices-for-creating-my-own-custom-exception 1 What are some best practices for creating my own custom exception? mattruma 2008-09-10T17:55:01Z 2008-09-10T18:27:35Z <p>In a follow-up to a <a href="http://beta.stackoverflow.com/questions/54789/what-is-the-correct-net-exception-to-throw-when-try-to-insert-a-duplicate-objec" rel="nofollow">previous question</a> regarding exceptions, what are best practices for creating a custom exception in .NET? </p> <p>More specifically should you inherit from System.Exception, System.ApplicationException or some other base exception?</p> http://stackoverflow.com/questions/54851/what-are-some-best-practices-for-creating-my-own-custom-exception/54854#54854 1 Answer by Thomas Owens for What are some best practices for creating my own custom exception? Thomas Owens 2008-09-10T17:56:36Z 2008-09-10T17:56:36Z <p>I think the single most important thing to remember when dealing with exceptions at any level (making custom, throwing, catching) is that exceptions are only for exceptional conditions.</p> http://stackoverflow.com/questions/54851/what-are-some-best-practices-for-creating-my-own-custom-exception/54856#54856 5 Answer by Mark Cidade for What are some best practices for creating my own custom exception? Mark Cidade 2008-09-10T17:57:04Z 2008-09-10T17:57:04Z <p>Inherit from System.Exception. System.ApplicationException is useless and the design guidelines say "<strong>Do not</strong> throw or derive from System.ApplicationException." </p> <p>See <a href="http://blogs.msdn.com/kcwalina/archive/2006/06/23/644822.aspx" rel="nofollow">http://blogs.msdn.com/kcwalina/archive/2006/06/23/644822.aspx</a></p> http://stackoverflow.com/questions/54851/what-are-some-best-practices-for-creating-my-own-custom-exception/54857#54857 1 Answer by rp for What are some best practices for creating my own custom exception? rp 2008-09-10T17:57:15Z 2008-09-10T17:57:15Z <p>See this question: <a href="http://beta.stackoverflow.com/questions/52753/derive-from-exception-or-applicationexception-in-net" rel="nofollow">http://beta.stackoverflow.com/questions/52753/derive-from-exception-or-applicationexception-in-net</a></p> http://stackoverflow.com/questions/54851/what-are-some-best-practices-for-creating-my-own-custom-exception/54859#54859 1 Answer by Jon Limjap for What are some best practices for creating my own custom exception? Jon Limjap 2008-09-10T17:57:31Z 2008-09-10T17:57:31Z <p>The base exception from where all other exceptions inherit from is System.Exception, and that is what you should inherit, unless of course you have a use for things like, say, default messages of a more specific exception.</p> http://stackoverflow.com/questions/54851/what-are-some-best-practices-for-creating-my-own-custom-exception/54863#54863 4 Answer by Will for What are some best practices for creating my own custom exception? Will 2008-09-10T17:58:48Z 2008-09-10T17:58:48Z <p>There is a code snippet for it. Use that. Plus, check your code analysis afterwards; the snippet leaves out one of the constructors you should implement. </p> http://stackoverflow.com/questions/54851/what-are-some-best-practices-for-creating-my-own-custom-exception/54942#54942 1 Answer by Jay Bazuzi for What are some best practices for creating my own custom exception? Jay Bazuzi 2008-09-10T18:27:35Z 2008-09-10T18:27:35Z <p>In the C# IDE, type 'exception' and hit TAB. This will expand to get you started in writing a new exception type. There are comments withs links to some discussion of exception practices.</p> <p>Personally, I'm a big fan of creating lots of small classes, at that extends to exception types. For example, in writing the Foo class, I can choose between:</p> <ol> <li><code>throw new Exception("Bar happened in Foo");</code></li> <li><code>throw new FooException("Bar happened");</code></li> <li><code>throw new FooBarException();</code></li> </ol> <p>where</p> <pre><code>class FooException : Exception { public FooException(string message) ... } </code></pre> <p>and</p> <pre><code>class FooBarException : FooException { public FooBarException() : base ("Bar happened") { } } </code></pre> <p>I prefer the 3rd option, because I see it as being an OO solution.</p>