Hi All,
I have recently noticed that few clients follow some standards for exception handling.
try
{
//If I am not wrong here
}
catch
{
//Don't Know what to do here!!
}
I was told in the past that do not re-throw the error in catch instead use the above code.
When we re-throw it usually goes to asax app_err. What might me the reason behind the above code.
My question is: Why would a developer code in this way. This is a kind of writing a code for sake of it which makes not sense as we are not catching anything.
Not sure why... Anyway please suggest
Go to the complete details ...