Nov 29 2011, 05:43 AM
To farther add onto MindHackers post, don't forget you can re-throw exceptions through catch:
Also, don't forget it is also possible to use more than one catch clause with a try-catch statement! (right out of MSDN). There is no limitation there!
Code:
catch (Exception ex)
{
throw (ex);
}Also, don't forget it is also possible to use more than one catch clause with a try-catch statement! (right out of MSDN). There is no limitation there!


![[-]](https://war-lords.net/forum/images/collapse.png)