I have an ASP.NET applications. Everything was fine, but recently I get exceptions that are null themselves:
try { // do something } catch (Exception ex)
In my case, the cause was a StackOverflowException. Such exceptions normally don't reach the catch block at all, but this time, for some reason I don't understand, it did reach the catch block, but the exception was null.
StackOverflowException
catch
null