I have an ASP.NET applications. Everything was fine, but recently I get exceptions that are null themselves:
try { // do something } catch (Exception ex)
That cannot happen.
If you throw null, you'll get a NullReferenceException from the throw; the exception in the catch block can never be null.
throw null
NullReferenceException
throw
catch
null
You have something else that's null.