Work toward ripple_path_find.

This commit is contained in:
Arthur Britto
2012-11-22 11:51:40 -08:00
parent 814be24361
commit 4e713c58ad
5 changed files with 104 additions and 39 deletions

View File

@@ -92,8 +92,12 @@ bool STAmount::bSetJson(const Json::Value& jvSource)
return true;
}
catch (...)
catch (const std::exception& e)
{
cLog(lsINFO)
<< boost::str(boost::format("bSetJson(): caught: %s")
% e.what());
return false;
}
}