Hi friends,
I wnat to know taht what is the difference between generic error and standard detailed error.
Regards
Shubham Agrawal.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
ArshadPosted Jun 8, 2009, 1:08 AM
while writing the code when we use like
Catch(Exception ex)
{
throw new Exception(ex.Exception)
}
i.e called as the generic exception
but when we use the specific execption like
catch (ArithmeticException ex)
{
throw new Exception(ex.Exception)
}
this is called the standard Error, i hope you got it.
Generic means it will take care of any kind of Execption.