What are some best practices for creating my own custom exception? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T19:57:42Zhttp://stackoverflow.com/feeds/question/54851http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/54851/what-are-some-best-practices-for-creating-my-own-custom-exception1What are some best practices for creating my own custom exception?mattruma2008-09-10T17:55:01Z2008-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#548541Answer by Thomas Owens for What are some best practices for creating my own custom exception?Thomas Owens2008-09-10T17:56:36Z2008-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#548565Answer by Mark Cidade for What are some best practices for creating my own custom exception?Mark Cidade2008-09-10T17:57:04Z2008-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#548571Answer by rp for What are some best practices for creating my own custom exception?rp2008-09-10T17:57:15Z2008-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#548591Answer by Jon Limjap for What are some best practices for creating my own custom exception?Jon Limjap2008-09-10T17:57:31Z2008-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#548634Answer by Will for What are some best practices for creating my own custom exception?Will2008-09-10T17:58:48Z2008-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#549421Answer by Jay Bazuzi for What are some best practices for creating my own custom exception?Jay Bazuzi2008-09-10T18:27:35Z2008-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>