PD: Fix coverity issue:

* CID 350645: Uncaught exception
This commit is contained in:
wmayer
2022-03-13 17:24:07 +01:00
parent 0be04bb5e0
commit 55f8d68b4e

View File

@@ -356,7 +356,12 @@ SubShapeBinder::SubShapeBinder()
}
SubShapeBinder::~SubShapeBinder() {
clearCopiedObjects();
try {
clearCopiedObjects();
}
catch (const Base::ValueError& e) {
e.ReportException();
}
}
void SubShapeBinder::setupObject() {