decoder/Thread: remove the obsolete catch(Error&)

This commit is contained in:
Max Kellermann 2016-11-10 12:50:12 +01:00
parent f4bb18b05e
commit 43b285ef7a

View File

@ -33,7 +33,6 @@
#include "DecoderList.hxx"
#include "util/MimeType.hxx"
#include "util/UriUtil.hxx"
#include "util/Error.hxx"
#include "util/RuntimeError.hxx"
#include "util/Domain.hxx"
#include "util/ScopeExit.hxx"
@ -466,8 +465,6 @@ decoder_task(void *arg)
std::rethrow_exception(dc.error);
} catch (const std::exception &e) {
LogError(e);
} catch (const Error &error) {
LogError(error);
} catch (...) {
}
}