Is there a difference between just saying throw; and throw ex; assuming ex is the exception you\'re catching?
throw;
throw ex;
ex
throw ex; will erase your stacktrace. Don't do this unless you mean to clear the stacktrace. Just use throw;