mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Use "what" in exception reports.
This commit is contained in:
parent
5fd9264dcd
commit
05a67c486e
@ -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(
|
||||
|
@ -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;
|
||||
|
@ -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 (...)
|
||||
|
Loading…
Reference in New Issue
Block a user