So from http://msdn.microsoft.com/en-us/library/ms173161.aspx
Once an exception is thrown, it propagates up the call stack until a catch statement for the exception is found.
So the implcation is that all exception typess can be either caught by a catch(ExceptionType)
or a generic catch
.
However this is plainly not true. For example AccessViolationException
bypasses standard exception handling
How to handle AccessViolationException
So what other exceptions also bypass standard exception handling?