Why Create Custom Exceptions? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T10:42:11Z http://stackoverflow.com/feeds/question/417428 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/417428/why-create-custom-exceptions 8 Why Create Custom Exceptions? Yoann. B 2009-01-06T17:26:40Z 2009-01-11T15:58:45Z <p>Why do we need to create custom exceptions in .NET?</p> http://stackoverflow.com/questions/417428/why-create-custom-exceptions/417437#417437 2 Answer by masfenix for Why Create Custom Exceptions? masfenix 2009-01-06T17:28:35Z 2009-01-06T17:28:35Z <p>I am not sure why "technically" but lets say I have a app/website that uses permissions. If someone does not have the right permission, its kinda stupid to throw a DivideByZero Exception or IOException. Instead I can create my AccessDeniedException which will help me debug later on.</p> http://stackoverflow.com/questions/417428/why-create-custom-exceptions/417440#417440 5 Answer by Joel Coehoorn for Why Create Custom Exceptions? Joel Coehoorn 2009-01-06T17:28:44Z 2009-01-06T17:51:03Z <p>So you can also throw them yourself, and then catch them and know <em>exactly</em> what they mean.</p> <p>Also: if you're building a class library/framework/api, it's often useful to create a BaseException that other exceptions in your code inherit from. Then when your code raises exceptions the programmers who are using it can quickly know the source of the exception.</p> http://stackoverflow.com/questions/417428/why-create-custom-exceptions/417442#417442 8 Answer by krosenvold for Why Create Custom Exceptions? krosenvold 2009-01-06T17:29:21Z 2009-01-06T17:59:44Z <p>Because it can make your intentions clear, and you can also track usages using IDE functionality. Say that you have a custom backend system called "FooBar" and you make a "FooBarDownException", you can track usages of this exception to identify any custom logic your application contains because FooBar is down. You can choose to catch this specific type of exception and ignore others, avoiding overloads and conditional logic within exception handlers. It's really just another version of strong typing. It also means you can avoid comments in your code because the exception has an <em>intention revealing name</em>.</p> http://stackoverflow.com/questions/417428/why-create-custom-exceptions/417448#417448 2 Answer by lc for Why Create Custom Exceptions? lc 2009-01-06T17:31:00Z 2009-01-06T17:59:04Z <p>It's the same reason you would create different exit codes for a non-.NET application: to specify different application-specific errors. Like...<code>ConnectionBrokenException</code> or um...<code>UserSmellsBadException</code>...or something.</p> <p>This way you can know exactly what went wrong and act appropriately. For example, if you try to send some data and the data transport class throws a <code>ConnectionBrokenException</code>, you can pop up a reconnect dialog and try to reconnect. Then the reconnect method would throw a <code>ConnectionTimeoutException</code> if it times out, and you can again act appropriately.</p> http://stackoverflow.com/questions/417428/why-create-custom-exceptions/417449#417449 1 Answer by mhenry1384 for Why Create Custom Exceptions? mhenry1384 2009-01-06T17:31:29Z 2009-01-06T17:31:29Z <p>The standard .NET exceptions don't cover everything bad that can go wrong in any application nor are they intended to. Unless your program is very simple, it's likely you will have to create at least a few custom exceptions.</p> http://stackoverflow.com/questions/417428/why-create-custom-exceptions/417452#417452 2 Answer by Serge - appTranslator for Why Create Custom Exceptions? Serge - appTranslator 2009-01-06T17:32:38Z 2009-01-06T17:32:38Z <p>As Joel wrote: So you can also throw them yourself, and then catch them and know exactly what they mean.</p> <p>In addition, you can add specific info about the problem in order to let your exception handler act more accurately.</p> http://stackoverflow.com/questions/417428/why-create-custom-exceptions/417455#417455 7 Answer by JaredPar for Why Create Custom Exceptions? JaredPar 2009-01-06T17:33:48Z 2009-01-06T17:33:48Z <p>I did a lengthy blog post on this subject recently:</p> <p><a href="http://blogs.msdn.com/jaredpar/archive/2008/10/20/custom-exceptions-when-should-you-create-them.aspx" rel="nofollow">http://blogs.msdn.com/jaredpar/archive/2008/10/20/custom-exceptions-when-should-you-create-them.aspx</a></p> <p>The crux of it comes down to: Only create a custom exception only if one of the following are true</p> <ol> <li>You actually expect someone to handle it. </li> <li>You want to log information about a particular error</li> </ol> http://stackoverflow.com/questions/417428/why-create-custom-exceptions/417457#417457 22 Answer by Jon Limjap for Why Create Custom Exceptions? Jon Limjap 2009-01-06T17:34:05Z 2009-01-06T18:03:38Z <p>Specific customs exceptions allow you to segregate different error types for your catch statements. The common construct for exception handling is this:</p> <pre><code>try {} catch (Exception ex) {} </code></pre> <p>This catches <em>all</em> exceptions regardless of type. However, if you have custom exceptions, you can have separate handlers for each type:</p> <pre><code>try {} catch (CustomException1 ex1) { //handle CustomException1 type errors here } catch (CustomException2 ex2) { //handle CustomException2 type errors here } catch (Exception ex) { //handle all other types of exceptions here } </code></pre> <p>Ergo, specific exceptions allow you a finer level of control over your exception handling. This benefit is shared not only by custom exceptions, but all other exception types in the .NET system libraries as well.</p> http://stackoverflow.com/questions/417428/why-create-custom-exceptions/417461#417461 0 Answer by Bill K for Why Create Custom Exceptions? Bill K 2009-01-06T17:36:17Z 2009-01-06T17:36:17Z <p>For one thing, Exceptions are implemented in the Library, not in the language--how can they create exceptions in the library? I'm pretty sure you aren't advocating that system libraries should have a different set of rules.</p> <p>For another, it's actually possible to use an object tree of exceptions. Your inherited exceptions can have special attributes if you like--they can be used for more complicated things than they are. I'm not advocating they be used as a generic data transport mechanism or anything (although they could be), but I could see a case where someone implemented a custom logging solution that required a special attribute on the Exception...</p> <p>Your custom exceptions could contain a flag indicating special treatment (maybe one saying you should restart the JVM), they could contain information about logging levels, a bunch of stuff.</p> <p>Anyway, I'm not advocating this stuff, I'm just saying it's possible. The first paragraph is you real answer.</p> http://stackoverflow.com/questions/417428/why-create-custom-exceptions/433109#433109 0 Answer by Øyvind Skaar for Why Create Custom Exceptions? Øyvind Skaar 2009-01-11T15:58:45Z 2009-01-11T15:58:45Z <p>You shouldn't if the built in Exceptions appropriately describes the problem/exception. I wouldn't make my own base classes to create a custom <code>ArgumentException</code>, <code>ArgumentNullException</code> or <code>InvalidOperationException</code>.</p> <p>You can create your own exceptions, and describe the error at a higher level. however, this usually doesn't help that much in debugging from a consumer class.</p> <p>If you throw and catch the exception yourself, a custom exception may be in order.</p>