show/hide this revision's text 3 added tag, corrected grammar in title
show/hide this revision's text 2 Added language agnostic tag
show/hide this revision's text 1

Why Re-throwing Exceptions?

I've seen the following code many times:

try
{
    ... // some code
}
catch (Exception ex)
{
    ... // Do something
    throw new CustomException(ex);

    // or
    // throw;

    // or
    // throw ex;
}

Can you please explain the purpose of re-throwing an exception? Is it following a pattern/best practice in exception handling? (I've read somewhere that it's called "Caller Inform" pattern?)