Fixes exception not showing c++ stacktrace in some cases.

This commit is contained in:
Deukhoofd 2021-04-30 13:53:41 +02:00
parent 3cb243175c
commit e1dadddf06
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
1 changed files with 14 additions and 6 deletions

View File

@ -11,9 +11,11 @@ namespace PkmnLibSharp.Utilities
Stack = stack; Stack = stack;
} }
public override string ToString() public override string Message
{ {
var s = base.ToString(); get
{
var s = base.Message;
if (Stack != null) if (Stack != null)
{ {
s += Environment.NewLine + Stack; s += Environment.NewLine + Stack;
@ -21,4 +23,10 @@ namespace PkmnLibSharp.Utilities
return s; return s;
} }
} }
public override string ToString()
{
return Message;
}
}
} }