I am continuing with my exam revision.

I have come across the usage of the Base Exception class and I have seen it on exam papers also.

My question is when do you derive from the Base Exception class?

I am of the impression if you want a custom class to throw an exception with more meaningful information, then you can create a custom exception class that contains the exact data that is representative of how your custom class is used and what scenario it is designed to be used for?

Why can't my custom exception class derive from 'ApplicationException' or 'SecurityException' or the base 'Exception' class?

I am of the impression that I should derive from the base Exception class and not the previous two.

My question second is, when would you derive from the other two??? Are there any clear-cut distinctions as to when you would derive from either one of these three? Assuming there are no others I have I have missed out?

SMALL UPDATE:

This question from transcender pretty much hits the nail on the head.


*Which class should you use to generate an application-specific exception?

Answer: The ApplicationException class*


Thanks, Ibrar

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

This is all discussed in the Design Guidelines document.

link|improve this answer
1  
Very interesting. I hadn't realized that ApplicationException was essentially declared obsolete, in a sense. – BlueMonkMN Apr 5 '10 at 13:17
Pretty much .... it says pretty clearly that you shouldn't use it !!! That's good enuff for me :) – IbrarMumtaz Apr 5 '10 at 13:23
feedback

In our most recent project we used a base exception class. We used it to get the following functionality:

  • All exceptions needed a number, so defining the property for the number was done in the base class
  • All exception messages needed to be formatted the same way, with the number, reason and type. This get formmated message was done in the base class.

Our base exception class derives from ApplicationException. This may have been a mistake, there is a lot of discussion about problems with too much depth of inheritance. However, we have not had any problems with this.

One tip for the exam: Read the question very carefully. Good luck.

link|improve this answer
Thanks and Roger that ! – IbrarMumtaz Apr 5 '10 at 13:00
feedback

In general, you want to derive from the Exception class which most closely resembles the type of exception you want to throw. If the trouble is that some Argument or Parameter has been passed which causes a problem, use ArgumentException. If you need some customization with that, inherit from ArgumentException.

In my experience, the only two reasons to use the base Exception are: 1) when you need some custom exception that completely does not fit one of the current exception models or 2) When a method could theoretically throw a number of exceptions, but you've already caught the ones you find most likely to be thrown.

Typically, I don't inherit from exceptions at all. Simply setting the Message property tends to be enough.

link|improve this answer
thanks for the reply. I will take bear that in mind when am reading the design guidelines document. – IbrarMumtaz Apr 5 '10 at 12:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.