If I need to throw an exception from within my application which of the built-in .net exception classes can I use? Are they all fair-game? When should I derive my own?
|
6
|
|||||
|
|
|
See Creating and Throwing Exceptions. On throwing built-in exceptions, it says: "Do not throw System.Exception, System.SystemException, System.NullReferenceException, or System.IndexOutOfRangeException intentionally from your own source code." and "Do Not Throw General Exceptions If you throw a general exception type, such as Exception or SystemException in a library or framework, it forces consumers to catch all exceptions, including unknown exceptions that they do not know how to handle. Instead, either throw a more derived type that already exists in the framework, or create your own type that derives from Exception." This blog entry also has some useful guidelines. Also, FxCop code analysis defines a list of "do not raise exceptions" as described here. It recommends: "The following exception types are too general to provide sufficient information to the user:
The following exception types are reserved and should be thrown only by the common language runtime:
So in theory you can raise any other framework exception type, providing you clearly understand the intent of the exception as described by Microsoft (MSDN documentation). Note, these are "guidelines" and as some others have said, there is debate around System.IndexOutOfRangeException (ie many developers throw this exception). |
||||||||
|
|
|
My advice would be to focus on two things:
In otherwords, I would sit down and identify:
The answer to #1 is, of course, application specific. The answer to #2 is "what ever similar code they are already familiar with does". The behavior that comes out of this is:
|
||
|
|
|
|
On the subject of Whichever way you decide, never throw an instance of these two classes directly. It's actually a pity that they aren't Avoid to create stub exceptions that don't do anything meaningful. In the same vein, avoid creating huge exception class hierarchies, they're rarely useful (although I can imagine a situation or two where I would use them … a parser being one of them). |
||
|
|
|
|
You can create and throw pretty much any of them, but you generally shouldn't. As an example, the various argument validation exceptions (ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, etc) are suitable for use in application code, but AccessViolationException isn't. ApplicationException is provided as a suitable base class for any custom exception classes you may require. See this MSDN article for a list of best practices - it refers to handling exceptions, but also contains good advice on creating them... |
||
|
|
|
|
I think you can throw every exception you like. if it's wise is another matter ;) |
||
|
|
|
|
http://blogs.msdn.com/brada/archive/2005/03/27/402801.aspx Comments on that post are also useful. |
||
|
|
|
|
I use the ArgumentException (and it's 'friends') regularly. NotSupported and NotImplemented are also common. |
||
|
|
|
|
|
|||
|
