He repeats the same mistake, you get nothing from it.
Sometimes you can use the catch method to do some sort of logging or something else without going through your exceptions like this:
catch (Exception) { myLogger.Log(LogLevels.Exception, "oh noes!") throw; }
I initially mistakenly thought that this would spin your stack, but this will only happen if you do the following:
catch (Exception err) { throw err; }
Boris Callens Apr 28 '10 at 10:34
source share