#856 – Choosing an Exception Type to Throw
May 31, 2013 1 Comment
When you throw an exception, you create and populate an instance of the System.Exception class, or one of its derived classes.
While it’s possible to throw an exception of type System.Exception, it’s not normally recommended. You typically want to throw as specific an exception as possible, for two reasons:
- To provide some specific details about what went wrong (e.g. filename that could not be found, rather than just a general message).
- To allow an exception handler to catch specific types of exceptions
Typically, when throwing an exception, you do one of the following:
- Throw an exception whose type matches one of the predefined exception types in the .NET Framework. (E.g. System.ArgumentException)
- Throw an instance of System.ApplicationException and provide a relevant message
- Define your own custom exception type, which inherits from System.Exception, and throw an instance of that type.