Use "what" in exception reports.

This commit is contained in:
chriseth 2019-05-29 22:26:18 +02:00
parent 5fd9264dcd
commit 05a67c486e
3 changed files with 35 additions and 2 deletions

View File

@ -769,6 +769,15 @@ Json::Value StandardCompiler::compileSolidity(StandardCompiler::InputsAndSetting
"Exception during compilation: " + boost::diagnostic_information(_exception)
));
}
catch (std::exception const& _e)
{
errors.append(formatError(
false,
"Exception",
"general",
"Unknown exception during compilation" + (_e.what() ? ": " + string(_e.what()) : ".")
));
}
catch (...)
{
errors.append(formatError(

View File

@ -989,6 +989,13 @@ bool CommandLineInterface::processInput()
serr() << "Exception during compilation: " << boost::diagnostic_information(_exception) << endl;
return false;
}
catch (std::exception const& _e)
{
serr() << "Unknown exception during compilation" << (
_e.what() ? ": " + string(_e.what()) : "."
) << endl;
return false;
}
catch (...)
{
serr() << "Unknown exception during compilation." << endl;
@ -1279,6 +1286,14 @@ bool CommandLineInterface::assemble(
serr() << "Exception in assembler: " << boost::diagnostic_information(_exception) << endl;
return false;
}
catch (std::exception const& _e)
{
serr() <<
"Unknown exception during compilation" <<
(_e.what() ? ": " + string(_e.what()) : ".") <<
endl;
return false;
}
catch (...)
{
serr() << "Unknown exception in assembler." << endl;
@ -1329,6 +1344,13 @@ bool CommandLineInterface::assemble(
serr() << "Exception while assembling: " << boost::diagnostic_information(_exception) << endl;
return false;
}
catch (std::exception const& _e)
{
serr() << "Unknown exception during compilation" << (
_e.what() ? ": " + string(_e.what()) : "."
) << endl;
return false;
}
catch (...)
{
serr() << "Unknown exception while assembling." << endl;

View File

@ -182,7 +182,7 @@ TestTool::Result TestTool::process()
else
return Result::Skipped;
}
catch(boost::exception const& _e)
catch (boost::exception const& _e)
{
AnsiColorized(cout, formatted, {BOLD, RED}) <<
"Exception during test: " << boost::diagnostic_information(_e) << endl;
@ -191,7 +191,9 @@ TestTool::Result TestTool::process()
catch (std::exception const& _e)
{
AnsiColorized(cout, formatted, {BOLD, RED}) <<
"Exception during test: " << _e.what() << endl;
"Exception during test" <<
(_e.what() ? ": " + string(_e.what()) : ".") <<
endl;
return Result::Exception;
}
catch (...)