Exceptional Quiz
What is the functional difference between the two catch block below?
(There's only one difference)
catch (Exception ex)
{
throw ex;
}
catch (Exception ex)
{
throw;
}
If you you know (or are brave enough to admit you are stumped), post in the comments section!