显示完整InnerException的正确方法是什么?

时间:2011-05-08 17:16:29

标签: c# exception inner-exception

显示我的完整InnerException的正确方法是什么。

我发现我的一些InnerExceptions有另一个InnerException,而且非常深。

InnerException.ToString()为我完成这项工作,还是需要循环浏览InnerExceptions并使用String建立StringBuilder

9 个答案:

答案 0 :(得分:204)

您只需打印exception.ToString() - 这也将包含所有嵌套InnerException的全文。

答案 1 :(得分:41)

只需使用exception.ToString()

即可

http://msdn.microsoft.com/en-us/library/system.exception.tostring.aspx

  

ToString的默认实现获取抛出当前异常的类的名称,消息,在内部异常上调用ToString的结果,以及调用Environment.StackTrace的结果。如果这些成员中的任何一个为null,则其值不包含在返回的字符串中。

     

如果没有错误消息或者它是空字符串(“”),则不返回任何错误消息。仅当内部异常和堆栈跟踪不为空时才返回它们的名称。

exception.ToString()也会在该异常的内部异常上调用.ToString(),依此类推......

答案 2 :(得分:35)

我通常喜欢这样做以消除大部分噪音:

void LogException(Exception error) {
    Exception realerror = error;
    while (realerror.InnerException != null)
        realerror = realerror.InnerException;

    Console.WriteLine(realerror.ToString())
}    

编辑:我忘记了这个答案而且很惊讶没有人指出你可以做到

void LogException(Exception error) {
    Console.WriteLine(error.GetBaseException().ToString())
}    

答案 3 :(得分:29)

当您需要完整的详细信息(所有消息和堆栈跟踪)和推荐的详细信息时,@ Jon的答案是最佳解决方案。

但是,可能存在您只想要内部消息的情况,对于这些情况,我使用以下扩展方法:

public static class ExceptionExtensions
{
    public static string GetFullMessage(this Exception ex)
    {
        return ex.InnerException == null 
             ? ex.Message 
             : ex.Message + " --> " + ex.InnerException.GetFullMessage();
    }
}

当我有不同的用于跟踪和记录的侦听器并希望对它们有不同的视图时,我经常使用此方法。这样我就可以有一个监听器,通过电子邮件将整个错误与堆栈跟踪一起发送给开发团队,以便使用.ToString()方法进行调试,并使用每天发生的所有错误的历史记录写入日志文件。没有使用.GetFullMessage()方法的堆栈跟踪。

答案 4 :(得分:3)

要仅打印深层异常的Message s部分,您可以执行以下操作:

public static string ToFormattedString(this Exception exception)
{
    IEnumerable<string> messages = exception
        .GetAllExceptions()
        .Where(e => !String.IsNullOrWhiteSpace(e.Message))
        .Select(e => e.Message.Trim());
    string flattened = String.Join(Environment.NewLine, messages); // <-- the separator here
    return flattened;
}

public static IEnumerable<Exception> GetAllExceptions(this Exception exception)
{
    yield return exception;

    if (exception is AggregateException aggrEx)
    {
        foreach (Exception innerEx in aggrEx.InnerExceptions.SelectMany(e => e.GetAllExceptions()))
        {
            yield return innerEx;
        }
    }
    else if (exception.InnerException != null)
    {
        foreach (Exception innerEx in exception.InnerException.GetAllExceptions())
        {
            yield return innerEx;
        }
    }
}

此操作以递归方式遍历所有内部异常(包括AggregateException的情况)以打印其中包含的所有Message属性,并以换行符分隔。

例如

var outerAggrEx = new AggregateException(
    "Outer aggr ex occurred.",
    new AggregateException("Inner aggr ex.", new FormatException("Number isn't in correct format.")),
    new IOException("Unauthorized file access.", new SecurityException("Not administrator.")));
Console.WriteLine(outerAggrEx.ToFormattedString());
  

发生外部aggr ex。
  内部aggr例如。
  数字格式不正确。
  未经授权的文件访问。
  不是管理员。


您将需要收听其他 Exception 属性以获取更多详细信息。例如Data将提供一些信息。您可以这样做:

foreach (DictionaryEntry kvp in exception.Data)

要获取所有派生属性(不在基础Exception类上),可以执行以下操作:

exception
    .GetType()
    .GetProperties()
    .Where(p => p.CanRead)
    .Where(p => p.GetMethod.GetBaseDefinition().DeclaringType != typeof(Exception));

答案 5 :(得分:2)

我这样做:

namespace System {
  public static class ExtensionMethods {
    public static string FullMessage(this Exception ex) {
      if (ex is AggregateException) return (ex as AggregateException).InnerExceptions.Aggregate("[ ", (total, next) => $"{total}[{next.FullMessage()}] ") + "]";
      var msg = ex.Message.Replace(", see inner exception.", "").Trim();
      var innerMsg = ex.InnerException?.FullMessage();
      if (innerMsg is object && innerMsg!=msg) msg = $"{msg} [ {innerMsg} ]";
      return msg;
    }
  }
}

此“漂亮打印”所有内部异常,还处理AggregateException和InnerException.Message与Message相同的情况

答案 6 :(得分:0)

如果要获取有关所有异常的信息,请使用exception.ToString()。它将从所有内部异常中收集数据。

如果仅需要原始异常,则使用exception.GetBaseException().ToString()。这将使您成为第一个例外,例如最深层的内部异常;如果没有内部异常,则为当前异常。

示例:

try {
    Exception ex1 = new Exception( "Original" );
    Exception ex2 = new Exception( "Second", ex1 );
    Exception ex3 = new Exception( "Third", ex2 );
    throw ex3;
} catch( Exception ex ) {
    // ex => ex3
    Exception baseEx = ex.GetBaseException(); // => ex1
}

答案 7 :(得分:0)

建立在nawfal的答案上​​。

使用他的答案时,缺少一个变量aggrEx,我将其添加了。

文件ExceptionExtenstions.class:

// example usage:
// try{ ... } catch(Exception e) { MessageBox.Show(e.ToFormattedString()); }

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace YourNamespace
{
    public static class ExceptionExtensions
    {

        public static IEnumerable<Exception> GetAllExceptions(this Exception exception)
        {
            yield return exception;

            if (exception is AggregateException )
            {
                var aggrEx = exception as AggregateException;
                foreach (Exception innerEx in aggrEx.InnerExceptions.SelectMany(e => e.GetAllExceptions()))
                {
                    yield return innerEx;
                }
            }
            else if (exception.InnerException != null)
            {
                foreach (Exception innerEx in exception.InnerException.GetAllExceptions())
                {
                    yield return innerEx;
                }
            }
        }


        public static string ToFormattedString(this Exception exception)
        {
            IEnumerable<string> messages = exception
                .GetAllExceptions()
                .Where(e => !String.IsNullOrWhiteSpace(e.Message))
                .Select(e => e.Message.Trim() + "\r\n" + e.StackTrace.Trim() );
            string flattened = String.Join("\r\n\r\n", messages); // <-- the separator here
            return flattened;
        }
    }
}

答案 8 :(得分:0)

如果您使用的是Entity Framework,则exception.ToString()不会为您提供DbEntityValidationException异常的详细信息。您可能希望使用相同的方法来处理所有异常,例如:

catch (Exception ex)
{
   Log.Error(GetExceptionDetails(ex));
}

GetExceptionDetails包含以下内容:

public static string GetExceptionDetails(Exception ex)
{
    var stringBuilder = new StringBuilder();

    while (ex != null)
    {
        switch (ex)
        {
            case DbEntityValidationException dbEx:
                var errorMessages = dbEx.EntityValidationErrors.SelectMany(x => x.ValidationErrors).Select(x => x.ErrorMessage);
                var fullErrorMessage = string.Join("; ", errorMessages);
                var message = string.Concat(ex.Message, " The validation errors are: ", fullErrorMessage);

                stringBuilder.Insert(0, dbEx.StackTrace);
                stringBuilder.Insert(0, message);
                break;

            default:
                stringBuilder.Insert(0, ex.StackTrace);
                stringBuilder.Insert(0, ex.Message);
                break;
        }

        ex = ex.InnerException;
    }

    return stringBuilder.ToString();
}