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,