I don't know what we can do with a custom exception, what we can't do with a built-in one. It seems a naive question but I really have no idea about that. What do you think?
|
The reason for the different types of exceptions is to allow you to be able to catch just the ones you want with your handlers, letting the others go on up the stack. So you can arrange to catch exceptions for certain, occasionally-expected situations just by the type of the exception. You may not need to create your own very often at all, actually. But if you do, it would be because you need to be able to throw and capture an exception type more specific than what is available, and perhaps with additional information attached. |
|||||
|
|
It is useful to create a custom exception if:
But usually if there already is an exception in the framework that you could use then it is better to use it instead of creating your own exception for the same thing. |
|||
|
|
|
You could use it for implementing special error handling for things related to your application. Suppose you build a banana application, then you could have an
Edit: Edit2: |
|||||||||||
|
|
There's only a few exceptions in .NET that are treated in a special manner, like ThreadAbortException, which can't (normally) be caught and handled and swallowed. Other than that, exception types are just exception types. You can do pretty much the same with your own exceptions that you can do with the ones defined in the framework. |
|||
|
|
|
The benefits of custom exceptions have been outlined here, but before you create your own make sure the BCL doesn't already have one fitting your needs: http://mikevallotton.wordpress.com/2009/07/08/net-exceptions-all-of-them/ (There's 141 of them!) |
|||
|
|
|
One annoyance with the built-in exceptions is that there is no systematic distinction made between exceptions that indicate that
It may be useful to catch exceptions and rethrow one of three custom exceptions (meanings defined above) based upon where the exception was caught. When the exception is rethrown, pass the original exception as the InnerException parameter. Incidentally, it's possible to define generic exceptions. I'm not quite sure of the pros and cons of doing so, and I've never seen anyone else do it. One could define e.g. a TransientFaultException(of T) which inherits from a (custom) TransientFaultException; an application which catches a TimeoutException could rethrow as a TransientFaultException(of TimeOutException) and have it caught as either a TransientFaultException(of TimeoutException) or a TransientFaultException. Unfortunately, one would have to know the type of the exception to be taught to create the proper generic. If one were to catch an Exception and pass it to a factory method for TransientFaultException, the new exception would be of type TransientFaultException(of Exception), regardless of what type of exception was originally thrown. |
||||
|
|
|
Custom exceptions allow you to do 2 things:
You should only create a custom exception when there isn't a built in exception to handle as necessary. As an example, in our application we have We also have |
|||
|
|
