ContentPack::scan another unhandled exception fix

This commit is contained in:
MihailRis 2024-02-03 07:11:32 +03:00
parent 685aab6bb5
commit 6c5f664d36

View File

@ -102,6 +102,8 @@ void ContentPack::scan(fs::path rootfolder,
} catch (const contentpack_error& err) {
std::cerr << "package.json error at " << err.getFolder().u8string();
std::cerr << ": " << err.what() << std::endl;
} catch (const std::runtime_error& err) {
std::cerr << err.what() << std::endl;
}
}
}