Should my custom Exceptions Inherit an exception that is similar to them or just inherit from Exception? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T04:19:53Z http://stackoverflow.com/feeds/question/1032484 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1032484/should-my-custom-exceptions-inherit-an-exception-that-is-similar-to-them-or-just 3 Should my custom Exceptions Inherit an exception that is similar to them or just inherit from Exception? Sruly 2009-06-23T13:09:28Z 2009-06-23T15:17:50Z <p>I am creating some custom exceptions in my application.</p> <p>If I have an exception that gets thrown after testing the state of an argument, Or I have an Exception that gets thrown after testing that an int is within the proper range, should my exceptions inherit ArgumentException and IndexOutOfRangeException or should they just inherit Exception?</p> http://stackoverflow.com/questions/1032484/should-my-custom-exceptions-inherit-an-exception-that-is-similar-to-them-or-just/1032503#1032503 2 Answer by BFree for Should my custom Exceptions Inherit an exception that is similar to them or just inherit from Exception? BFree 2009-06-23T13:14:01Z 2009-06-23T13:14:01Z <p>I'm just curious, why wouldn't you actually use the Exceptions that are already there? It sounds like these exceptions are exactly what you need, why are you against using those?</p> http://stackoverflow.com/questions/1032484/should-my-custom-exceptions-inherit-an-exception-that-is-similar-to-them-or-just/1032509#1032509 2 Answer by AnthonyWJones for Should my custom Exceptions Inherit an exception that is similar to them or just inherit from Exception? AnthonyWJones 2009-06-23T13:14:54Z 2009-06-23T13:14:54Z <p>Personally if I have an indexer and the index value is out of range then I would simply throw the existing IndexOutOfRangeException, I would not go to the trouble of inheriting from it.</p> <p>If you are talking only about similar but not exactly the same exceptions, then take a look at the pattern provided in the framework. It doesn't look like this would make sense, inheritance describes an "is-a" relationship.</p> http://stackoverflow.com/questions/1032484/should-my-custom-exceptions-inherit-an-exception-that-is-similar-to-them-or-just/1032521#1032521 4 Answer by AllenG for Should my custom Exceptions Inherit an exception that is similar to them or just inherit from Exception? AllenG 2009-06-23T13:16:31Z 2009-06-23T13:16:31Z <p>Presuming that you really need a custom exception, I would inherit from the Exception most like what you're looking for, rather than just from Exception.</p> <p>That said, I have found that, under most conditions, using correct wording in you Exception message will normally suffice over creating a whole new exception.</p> <p>How, for instance is <code>throw new IntOutOfProperRangeException();</code> significantly different from <code>throw new ArgumentOutOfRangeException("The int value was too large?");</code></p> http://stackoverflow.com/questions/1032484/should-my-custom-exceptions-inherit-an-exception-that-is-similar-to-them-or-just/1032528#1032528 8 Answer by Lucero for Should my custom Exceptions Inherit an exception that is similar to them or just inherit from Exception? Lucero 2009-06-23T13:17:24Z 2009-06-23T13:17:24Z <p>Since inheritance is used to specify which exceptions to catch, you should respect this primarily when taking a decision.</p> <p>Think of an IOException which carries additional information, or a ArgumentException other than ArgumentOutOfRangeException or ArgumentNullException.</p> http://stackoverflow.com/questions/1032484/should-my-custom-exceptions-inherit-an-exception-that-is-similar-to-them-or-just/1032538#1032538 1 Answer by Aaron Daniels for Should my custom Exceptions Inherit an exception that is similar to them or just inherit from Exception? Aaron Daniels 2009-06-23T13:20:07Z 2009-06-23T13:20:07Z <p>If you don't need to add any additional data to the exception, then I'd just use the native .NET exceptions like IndexOutOfRangeException.</p> <p>However, if you needed to associate something with your exception that you can't natively do with IndexOutOfRangeException, then I'd inherit from it. The benefit here is that you can catch either your new custom exception type or IndexOutOfRangeException. Of course, if you catch the base type, you won't have your extra properties and such.</p> http://stackoverflow.com/questions/1032484/should-my-custom-exceptions-inherit-an-exception-that-is-similar-to-them-or-just/1032539#1032539 0 Answer by ATorras for Should my custom Exceptions Inherit an exception that is similar to them or just inherit from Exception? ATorras 2009-06-23T13:20:08Z 2009-06-23T13:20:08Z <p>Hi,</p> <p>Almost always I use the IllegalArgumentException (nulls and/or out-of-range values) and IllegalStateException for anything not more specific than IOException, SQLException, Null...</p> http://stackoverflow.com/questions/1032484/should-my-custom-exceptions-inherit-an-exception-that-is-similar-to-them-or-just/1032549#1032549 1 Answer by Samuel Carrijo for Should my custom Exceptions Inherit an exception that is similar to them or just inherit from Exception? Samuel Carrijo 2009-06-23T13:21:53Z 2009-06-23T13:45:27Z <p>IMHO, there is no problem inheriting from another Exception. It makes even clearer the purpose of that exception. But make sure that everything that applies to the ParentException also applies to the ChildException you created. Otherwise, you could end up with the <a href="http://jdfrens.blogspot.com/2006/11/square-does-not-extend-rectangle.html" rel="nofollow">"Square extends Rectangle" problem</a>...</p> http://stackoverflow.com/questions/1032484/should-my-custom-exceptions-inherit-an-exception-that-is-similar-to-them-or-just/1032809#1032809 0 Answer by John Cuckaroo for Should my custom Exceptions Inherit an exception that is similar to them or just inherit from Exception? John Cuckaroo 2009-06-23T14:13:20Z 2009-06-23T14:13:20Z <p>If you just use the generic Exception you will never be able to trap specific exceptions that are custom to your application. If you just use</p> <pre><code>try { } catch (Exception ex) { } </code></pre> <p>You will catch every exception without being able to filter for specific errors.</p> <p>Another reason I create a custom exception is to handle application specific exceptions that may occur for many reasons. This allows mean to throw an custom exception but customize the message associated with the exception. It also gives me another level of error handling that is for my specific application.</p> <p>For example I have an enigineering application that sizes belt drive systems. The dll is also available for other people to use. I have an application exception that is thrown when an error occurs in the selection. The reason for the error can be for many reasons (invalid drive speed, incorrect horsepower requirements, etc.). Since there are many reasons for failure, a custom application exception allows me to give specific details for the failure.</p> <p>This also allows me to document to users that method calls will throw application specific exceptions that they need to handle. </p> <p>If your inheritting Exception class make sure to implement the constructors in the the base class that have a message, message + inner exception and serialized exception.</p> <p>Here is an example I have.</p> <pre><code>/// &lt;summary&gt; /// Drive error exception class. Thrown when a drive selection error has occured. /// &lt;/summary&gt; [Serializable] public class DriveException : ApplicationException { /// &lt;summary&gt; /// Default constructor. /// &lt;/summary&gt; public DriveException() { } /// &lt;summary&gt; /// Constructor used with a message. /// &lt;/summary&gt; /// &lt;param name="message"&gt;String message of exception.&lt;/param&gt; public DriveException(string message) : base(message) { } /// &lt;summary&gt; /// Constructor used with a message and an inner exception. /// &lt;/summary&gt; /// &lt;param name="message"&gt;String message of exception.&lt;/param&gt; /// &lt;param name="inner"&gt;Reference to inner exception.&lt;/param&gt; public DriveException(string message, Exception inner) : base(message, inner) { } /// &lt;summary&gt; /// Constructor used in serializing the data. /// &lt;/summary&gt; /// &lt;param name="info"&gt;Data stored to serialize/de-serialize&lt;/param&gt; /// &lt;param name="context"&gt;Defines the source/destinantion of the straeam.&lt;/param&gt; public DriveException(SerializationInfo info, StreamingContext context) : base(info, context) { } } </code></pre> http://stackoverflow.com/questions/1032484/should-my-custom-exceptions-inherit-an-exception-that-is-similar-to-them-or-just/1033133#1033133 0 Answer by Alexey Reznick for Should my custom Exceptions Inherit an exception that is similar to them or just inherit from Exception? Alexey Reznick 2009-06-23T15:03:13Z 2009-06-23T15:03:13Z <p>I think that it all depends on whether will you want to catch your ArgumentNotInPersitableState exception as an ArgumentOutOfRange. If there will be such a catch block (or if you're writing a framework, which will be presumable used by others) then yes you should inherit the relevant exception type.</p> http://stackoverflow.com/questions/1032484/should-my-custom-exceptions-inherit-an-exception-that-is-similar-to-them-or-just/1033239#1033239 0 Answer by eschneider for Should my custom Exceptions Inherit an exception that is similar to them or just inherit from Exception? eschneider 2009-06-23T15:17:50Z 2009-06-23T15:17:50Z <p>I think it's always safer to create a new Exception type. If you ever need to change how it is handled, it will be easier to find cases where you are or might be handling it. It's a lot easier to find MyException than to find the specific case of ArgumentOutOfRangeException. You seem to be able to provide some extra info in the exception, and it's not too much work to create an exception.</p> <p>Also I tend to inherit a base application class like MyBaseException, and make sure to add a XML comments for the exception/s.</p>