fix: Build errors

This commit is contained in:
WerWolv
2022-09-04 00:04:27 +02:00
parent 1a21627cdb
commit d240b4ed49

View File

@@ -21,10 +21,10 @@ namespace hex {
this->interruption();
} catch (const std::exception &e) {
log::error("Exception in task {}: {}", this->m_unlocalizedName, e.what());
this->exception();
this->exception(e.what());
} catch (...) {
log::error("Exception in task {}", this->m_unlocalizedName);
this->exception();
this->exception("Unknown Exception");
}
this->finish();