What is an Exception? How many exceptions exist in Dot net
and explain them?
Answer Posted / manikanta.srinu
Exception is not an error,It's abnmormal
condition.Exceptions will be raise at runtime.if you want
to handle exception,we can use try-catch block.
There are 2 types of exception.
1).System Exception
2).Application Exception
The above two exception are genarated from "Exception" base
class.
SystemException: is meant only for those exceptions defined
by the common language runtime.
Ex:NullReferenceException
ApplicationException: is thrown by a user program.
By using this,we can throws our own exception message.
| Is This Answer Correct ? | 20 Yes | 0 No |
Post New Answer View All Answers
Explain the differences between server-side code and client-side code.
How com+ related to the dna architecture?
What is smart navigation in .net?
Explain difference between panel and groupbox classes using .net?
Write a program to create a user control with name and surname as data members and login as method and also the code to call it.
Explain me why do we use msmq?
What is a serviced component?
What is .net assembly?
What does cil do?
Explain what is heap and what is stack?
How anonymous method is different from a lambda expression?
What is a formatter in .net?
Explain the difference between garbage collections in .net 4.0 and earlier versions?
Will it go to finally block if there is no exception happened?
object is physical and class is logical..here class is not occupying any memory as our definition of class but i got a question then the class where it stores if it is not occupying any memory....