R
RP
In certain code blocks I don't want to do anything when an error is
raised. I simply want that application must remain stable instead of
crash. For the following code, is there a way to ignore declaration of
Exception ex:
try
{
//do somthing
}
catch (Exception ex)
{ //do nothing };
Since I am not using ex, it raises too many warnings.
raised. I simply want that application must remain stable instead of
crash. For the following code, is there a way to ignore declaration of
Exception ex:
try
{
//do somthing
}
catch (Exception ex)
{ //do nothing };
Since I am not using ex, it raises too many warnings.