Caught exception is null itself !

I have an ASP.NET applications. Everything was fine, but recently I get exceptions that are null themselves:

try
{
    // do something
}
catch (Exception ex)
{
    Logger.Log("Error while tried to do something. Error: " + ex.Message);
}

Sometimes ex is null itself !

Any idea?

32
задан Tony The Lion 12 April 2011 в 11:35
поделиться