for example

//---------------a
    try
    {
          // some network call
    }
    catch(WebException we)
    {
       throw new MyCustomException("some message ....", we);
    }


In another place

//--------------b
    try
    {
        // invoke code above
    }
    catch(MyCustomException we)
    {
        Debug.Writeline(we.stacktrace);   // <----------------
    }

the stacktrace i print, it only start from a to b, it doesnt include the inner stacktrace from the WebException, how can i print all the stacktrace???

Thanks,

link|improve this question

78% accept rate
feedback

2 Answers

up vote 3 down vote accepted

I usually use the .ToString() method on exceptions to present the full exception information (including the inner stack trace) in text:

catch(MyCustomException we)
{
    Debug.Writeline(we.ToString());
}

Sample output:

ConsoleApplication1.MyCustomException: some message .... ---> System.Exception: Oh noes!
   at ConsoleApplication1.SomeObject.OtherMethod() in C:\ConsoleApplication1\SomeObject.cs:line 24
   at ConsoleApplication1.SomeObject..ctor() in C:\ConsoleApplication1\SomeObject.cs:line 14
   --- End of inner exception stack trace ---
   at ConsoleApplication1.SomeObject..ctor() in C:\ConsoleApplication1\SomeObject.cs:line 18
   at ConsoleApplication1.Program.DoSomething() in C:\ConsoleApplication1\Program.cs:line 23
   at ConsoleApplication1.Program.Main(String[] args) in C:\ConsoleApplication1\Program.cs:line 13
link|improve this answer
feedback

Use a function like this:

    public static string FlattenException(Exception exception)
    {
        var stringBuilder = new StringBuilder();

        while (exception != null)
        {
            stringBuilder.AppendLine(exception.Message);
            stringBuilder.AppendLine(exception.StackTrace);

            exception = exception.InnerException;
        }

        return stringBuilder.ToString();
    }

Then you can call it like this:

try
{
    // invoke code above
}
catch(MyCustomException we)
{
    Debug.Writeline(FlattenException(we));
}
link|improve this answer
+1, but you could simply use AppendLine instead – Etienne de Martel Nov 24 '10 at 23:51
1  
Good point! Fixed... – Andrew Hare Nov 24 '10 at 23:52
2  
Or you can use ToString? – Justin Nov 24 '10 at 23:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.