Exception Handling
When reviewing code, you see a lot of ‘bad’ use of exception handling. As Pieter Gheysens mentioned, you see a lot of code that looks like: [csharp] try { // code statements } catch(Exception exc) { throw exc; } [/csharp] No extra logic defined inside the catch-block,...
