Example #1
0
    // Token: 0x06000149 RID: 329 RVA: 0x000086AC File Offset: 0x000068AC
    public static string smethod_6(Exception exception_0)
    {
        string text = Class26.smethod_7(exception_0);

        if (text.Length > 4096)
        {
            text = text.Remove(4093) + "...";
        }
        return(text);
    }
Example #2
0
    // Token: 0x0600014A RID: 330 RVA: 0x000086E4 File Offset: 0x000068E4
    private static string smethod_7(Exception exception_0)
    {
        StringBuilder stringBuilder = new StringBuilder();

        stringBuilder.AppendLine(exception_0.Message);
        stringBuilder.AppendLine();
        stringBuilder.AppendLine(exception_0.GetType().FullName);
        stringBuilder.AppendLine(exception_0.StackTrace);
        if (exception_0.InnerException != null)
        {
            stringBuilder.AppendLine();
            stringBuilder.AppendLine(Class26.smethod_7(exception_0.InnerException));
        }
        return(stringBuilder.ToString());
    }