C# Programming - Exception Handling - Discussion

Discussion Forum : Exception Handling - General Questions (Q.No. 18)
18.
It is compulsory for all classes whose objects can be thrown with throw statement to be derived from System.Exception class.
True
False
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
4 comments Page 1 of 1.

Matthew said:   9 years ago
" The thrown exception is an object whose class is derived from System.Exception".

So the answer is clearly True, not False.

Sachin hinge said:   10 years ago
CLR throw the exception at run time.

CLR provide this facility because CLR check which type of exception is occur that time magic class created instance means using CLR and then exception is occur then the throw exception.

Angel said:   1 decade ago
System Exception and Application Exception are derived from Exception.

Zak said:   1 decade ago
User-defined exception classes are derived from the Application Exception class.

Post your comments here:

Your comments will be displayed after verification.