Better exception printing for multi-line exceptions

This commit is contained in:
parth0809 2024-01-26 18:04:37 +05:30
parent 6a5938233b
commit eff28b5441

View file

@ -2581,7 +2581,17 @@ static std::string FormatCxxExceptionMessage(const char* description,
const char* location) {
Message message;
if (description != nullptr) {
message << "C++ exception with description \"" << description << "\"";
std::string desc;
const char *ch;
for(ch=description;*ch!='\0';ch++)
{
if(*ch=='\n')
desc+="\n>";
else
desc+=*ch;
}
description=desc.c_str();
message << "C++ exception with description \n" << description << "\n";
} else {
message << "Unknown C++ exception";
}