mirror of
https://github.com/jaquadro/NBTExplorer.git
synced 2025-01-09 17:36:25 +00:00
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) {
|
while (ix.InnerException != null) {
|
||||||
ix = ix.InnerException;
|
ix = ix.InnerException;
|
||||||
errorText.AppendLine();
|
errorText.AppendLine();
|
||||||
errorText.AppendLine("Caused by Inner Exception: " + ex.GetType().Name);
|
errorText.AppendLine("Caused by Inner Exception: " + ix.GetType().Name);
|
||||||
errorText.AppendLine("Message: " + ex.Message);
|
errorText.AppendLine("Message: " + ix.Message);
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in a new issue