So, from http://msdn.microsoft.com/en-us/library/ms173161.aspx
When an exception is thrown, it spreads the call stack until a catch statement for the exception is found.
Thus, the implication is that all types of exceptions can either be caught by catch(ExceptionType) , or by a common catch .
However, this is clearly not true. For example, AccessViolationException bypasses standard exception handling
How to handle AccessViolationException
So, what other exceptions also bypass standard exception handling?
Simon source share