Gets the details of an exception suitable for display. : Exception Stack « Language Basics « C# / C Sharp






Gets the details of an exception suitable for display.

 

//Microsoft Public License (Ms-PL)
//http://visualizer.codeplex.com/license
using System;
using System.Text;

namespace Redwerb.BizArk.Core.ExceptionExt
{

    /// <summary>
    /// Extensions for classes within the Drawing namespace.
    /// </summary>
    public static class ExceptionExt
    {
        /// <summary>
        /// Gets the details of an exception suitable for display.
        /// </summary>
        /// <param name="ex"></param>
        /// <returns></returns>
        public static string GetDetails(this Exception ex)
        {
            var details = new StringBuilder();

            while (ex != null)
            {
                details.AppendLine(ex.GetType().FullName);
                details.AppendLine(ex.Message);
                details.AppendLine(ex.StackTrace);

                ex = ex.InnerException;
                if (ex != null)
                {
                    details.AppendLine();
                    details.AppendLine(new string('#', 70));
                }
            }

            return details.ToString();
        }
    }
}

   
  








Related examples in the same category

1.Printing the stack trace from the Environment when an exception is not thrownPrinting the stack trace from the Environment when an exception is not thrown
2.Print the stack trace when an exception is thrownPrint the stack trace when an exception is thrown
3.Format Error String
4.Returns the simple name of the class, for use in exception messages.
5.Get Most Inner Exception