Don't stall threads on occt failures

This commit is contained in:
Thomas Krijnen
2024-06-11 14:14:11 +02:00
parent 95e36979d5
commit 4331f4f785
+3
View File
@@ -31,6 +31,9 @@ bool ifcopenshell::geometry::kernels::AbstractKernel::convert(const taxonomy::pt
} catch (std::exception& e) {
Logger::Error(e, item->instance);
return false;
} catch (...) {
// @todo we can't log OCCT exceptions here, can we do some reraising to solve this?
return false;
}
}