forked from mirrors/NBTExplorer
Fix InnerException reporting
This commit is contained in:
parent
97386a4e5f
commit
931ac752f5
1 changed files with 2 additions and 2 deletions
|
@ -81,8 +81,8 @@ namespace NBTExplorer
|
|||
while (ix.InnerException != null) {
|
||||
ix = ix.InnerException;
|
||||
errorText.AppendLine();
|
||||
errorText.AppendLine("Caused by Inner Exception: " + ex.GetType().Name);
|
||||
errorText.AppendLine("Message: " + ex.Message);
|
||||
errorText.AppendLine("Caused by Inner Exception: " + ix.GetType().Name);
|
||||
errorText.AppendLine("Message: " + ix.Message);
|
||||
}
|
||||
|
||||
try {
|
||||
|
|
Loading…
Reference in a new issue