All C# extension methods for type exception
-
ToLogString
Creates a string for logging purposes from an Exception. Includes the InnerException(s), Stacktrace et cetera.
-
ToException
Turns any object to Exception. Very useful!
-
GetMostInner
Gets the most inner (deepest) exception of a given Exception object
-
ToStringReccurent
Sometimes it is required to collect exception information in textual format. This method serializes general info about exception and all included exceptions reccursively. I'm using this for sending email error reports.