This commit is contained in:
John Jenko 2010-06-23 18:19:56 +00:00
parent e8e71db9bb
commit c0ffca0bb7

View File

@ -97,7 +97,7 @@ namespace Volian.Svg.Library
string sep = ""; string sep = "";
for (Exception ex1 = ex; ex1 != null; ex1 = ex1.InnerException) for (Exception ex1 = ex; ex1 != null; ex1 = ex1.InnerException)
{ {
sb.Append(sep + string.Format("{0} - {1}", ex1.GetType().Name, ex1.Message)); sb.Append(sep + string.Format("ShowException {0} - {1}", ex1.GetType().Name, ex1.Message));
sep = "\r\n"; sep = "\r\n";
} }
Console.WriteLine(sb); Console.WriteLine(sb);