moneroexamples 8 years ago
parent ede2ad9556
commit d44e0ad385

@ -3138,11 +3138,10 @@ public:
cerr << "Error opening/accessing custom lmdb database: "
<< e.what() << endl;
}
catch (...)
catch (std::exception& e)
{
std::exception_ptr p = std::current_exception();
cerr << "Error opening/accessing custom lmdb database: "
<< p.__cxa_exception_type()->name() << endl;
<< e.what() << endl;
}

Loading…
Cancel
Save