diff --git a/src/Mod/PartDesign/App/ShapeBinder.cpp b/src/Mod/PartDesign/App/ShapeBinder.cpp index fec3633178..826919f988 100644 --- a/src/Mod/PartDesign/App/ShapeBinder.cpp +++ b/src/Mod/PartDesign/App/ShapeBinder.cpp @@ -356,7 +356,12 @@ SubShapeBinder::SubShapeBinder() } SubShapeBinder::~SubShapeBinder() { - clearCopiedObjects(); + try { + clearCopiedObjects(); + } + catch (const Base::ValueError& e) { + e.ReportException(); + } } void SubShapeBinder::setupObject() {