If you are using components in your application, how can you
handle exceptions raised in a component ?
Answer Posted / lucky
try {
// UR code
}
catch(Exception exMsg)
{
}
catch(ApplicationException exAppMsg)
{
}
by this u can get any type of error messages, if ur component have implemented with throwing Application or Throw Exception, those will come to u, where u r calling.
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What is model first? : Entity framework
If I have multiple filters implemented, what is the order in which these filters get executed?
differences between poco, model first and data first approach?
which are the key concepts of entity data model?
What are differences between entity framework and l2s? : Entity framework
What is layout in mvc?
What is the mvc pattern (model view controller pattern)?
What is a model in android?
What are Model Binders in ASP.Net MVC?
What are the new features 3.5 framework against with the tool?
Mention two instances where routing is not implemented or required?
What is mapping in entity framework? : Entity framework
Can you please explain the request flow in ASP.NET MVC framework?
what is .edmx file and what it contains?
how do you query in entity model when the result has a join from from different database other than the entity model?