App: Capitalize exception message in Document.cpp.

This commit is contained in:
Joao Matos
2025-02-28 15:31:59 +00:00
parent 127cdc20ff
commit ec2a281d66

View File

@@ -3367,7 +3367,7 @@ int Document::_recomputeFeature(DocumentObject* Feat)
return 1;
}
catch (std::exception& e) {
FC_ERR("exception in " << Feat->getFullName() << " thrown: " << e.what());
FC_ERR("Exception in " << Feat->getFullName() << " thrown: " << e.what());
d->addRecomputeLog(e.what(), Feat);
return 1;
}