Exemplo n.º 1
0
        public static ExceptionNode Create(Exception exception)
        {
            if (exception == null)
            {
                return(null);
            }

            return(new ExceptionNode {
                Type = TypeSpec.Parse(exception.GetType()),
                Message = exception.Message,
                InnerException = ExceptionNode.Create(exception.InnerException),
                StackTrace = StackTrace.Create(new System.Diagnostics.StackTrace(exception, true))
            });
        }