aboutsummaryrefslogtreecommitdiffstats
path: root/SolidityABIJSON.cpp
diff options
context:
space:
mode:
authorLefteris Karapetsas <lefteris@refu.co>2015-01-20 01:58:09 +0800
committerLefteris Karapetsas <lefteris@refu.co>2015-01-20 03:12:48 +0800
commit02521a164ce8fc49d6d4af584da127098c59ba2f (patch)
tree4919438f89b8d001542a45f149e4920aff3c7228 /SolidityABIJSON.cpp
parentab4178941b1f1d99bf266cd0a27d79a27162513a (diff)
downloaddexon-solidity-02521a164ce8fc49d6d4af584da127098c59ba2f.tar.gz
dexon-solidity-02521a164ce8fc49d6d4af584da127098c59ba2f.tar.zst
dexon-solidity-02521a164ce8fc49d6d4af584da127098c59ba2f.zip
Improved handling of exceptions in some Solidity Tests
Diffstat (limited to 'SolidityABIJSON.cpp')
-rw-r--r--SolidityABIJSON.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/SolidityABIJSON.cpp b/SolidityABIJSON.cpp
index d553f576..892b71f1 100644
--- a/SolidityABIJSON.cpp
+++ b/SolidityABIJSON.cpp
@@ -41,13 +41,9 @@ public:
{
m_compilerStack.parse(_code);
}
- catch (const std::exception& e)
+ catch(boost::exception const& _e)
{
- std::string const* extra = boost::get_error_info<errinfo_comment>(e);
- std::string msg = std::string("Parsing contract failed with: ") +
- e.what() + std::string("\n");
- if (extra)
- msg += *extra;
+ auto msg = std::string("Parsing contract failed with: ") + boost::diagnostic_information(_e);
BOOST_FAIL(msg);
}
std::string generatedInterfaceString = m_compilerStack.getMetadata("", DocumentationType::ABI_INTERFACE);