The difference between try/catch/throw and try/catch(e)/throw e

Viewed 78702

What is the difference between

try { }
catch
{ throw; }

and

try { }
catch(Exception e)
{ throw e;}

?

And when should I use one or the other?

4 Answers
Related