This article talks about throwing exceptions, but my question is why do they say to throw a new exception, of the same type, but with a different title(?)?
Why not just say:
Code:
catch (Exception ex)
{
throw;
}
as opposed to:
Code:
catch (Exception ex)
{
throw new Exception("my repetitive exception", ex);
}
Just curious...