input/curl: use std::throw_with_nested() instead of logging the exception

Let the caller decide what to do with the original exception.
This commit is contained in:
Max Kellermann 2019-03-29 17:33:11 +01:00
parent fb7daa0d05
commit 5201147ab1

View File

@ -306,9 +306,8 @@ input_curl_init(EventLoop &event_loop, const ConfigBlock &block)
{
try {
curl_init = new CurlInit(event_loop);
} catch (const std::runtime_error &e) {
LogError(e);
throw PluginUnavailable(e.what());
} catch (...) {
std::throw_with_nested(PluginUnavailable("CURL initialization failed"));
}
const auto version_info = curl_version_info(CURLVERSION_FIRST);