Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

get message of base exception #463

Merged
merged 3 commits into from
Jan 14, 2021
Merged

Conversation

bettybao1209
Copy link
Contributor

@bettybao1209 bettybao1209 commented Jan 13, 2021

fix #458

chenzhitong
chenzhitong previously approved these changes Jan 14, 2021
@chenzhitong
Copy link
Member

And here also need to change

static string GetExceptionMessage(Exception exception)
{
if (exception == null) return null;
if (exception.InnerException != null)
{
return GetExceptionMessage(exception.InnerException);
}
return exception.Message;
}

@shargon shargon merged commit 4b11178 into neo-project:master Jan 14, 2021
@bettybao1209 bettybao1209 deleted the update-exmsg branch January 14, 2021 09:20
joeqian10 pushed a commit to joeqian10/neo-modules that referenced this pull request Apr 7, 2021
* get baseexception message

* update base exception message

* more fixes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Error on invokescript with a contract deployment script
3 participants