M
Mark Rae
Hi,
Can anyone please tell me if there is any difference in throwing an
exception with or without parentheses, e.g.
try
{
/*
code
*/
}
catch (Exception ex)
{
throw (ex);
}
try
{
/*
code
*/
}
catch (Exception ex)
{
throw ex;
}
Any assistance gratefully received.
Mark
Can anyone please tell me if there is any difference in throwing an
exception with or without parentheses, e.g.
try
{
/*
code
*/
}
catch (Exception ex)
{
throw (ex);
}
try
{
/*
code
*/
}
catch (Exception ex)
{
throw ex;
}
Any assistance gratefully received.
Mark