Main, db/Glue: improve error messages

This commit is contained in:
Max Kellermann
2017-01-23 18:52:11 +01:00
parent ec8cba369c
commit 1450e45d97
2 changed files with 11 additions and 2 deletions

View File

@@ -37,5 +37,10 @@ DatabaseGlobalInit(EventLoop &loop, DatabaseListener &listener,
throw FormatRuntimeError("No such database plugin: %s",
plugin_name);
return plugin->create(loop, listener, block);
try {
return plugin->create(loop, listener, block);
} catch (...) {
std::throw_with_nested(FormatRuntimeError("Failed to initialize database plugin '%s'",
plugin_name));
}
}