Index: Ringtoets/Integration/src/Ringtoets.Integration.IO/Exporters/AssemblyExporter.cs =================================================================== diff -u -rdc0c554ac67beec5735a1f0d927c571a186f22a9 -r0b9957cdedf8fdba4dd5fcc50098f462eba69feb --- Ringtoets/Integration/src/Ringtoets.Integration.IO/Exporters/AssemblyExporter.cs (.../AssemblyExporter.cs) (revision dc0c554ac67beec5735a1f0d927c571a186f22a9) +++ Ringtoets/Integration/src/Ringtoets.Integration.IO/Exporters/AssemblyExporter.cs (.../AssemblyExporter.cs) (revision 0b9957cdedf8fdba4dd5fcc50098f462eba69feb) @@ -30,6 +30,7 @@ using Ringtoets.Integration.Data; using Ringtoets.Integration.IO.Assembly; using Ringtoets.Integration.IO.Creators; +using Ringtoets.Integration.IO.Exceptions; using Ringtoets.Integration.IO.Factories; using Ringtoets.Integration.IO.Properties; @@ -78,6 +79,11 @@ SerializableAssemblyWriter.WriteAssembly(SerializableAssemblyCreator.Create(exportableAssessmentSection), filePath); } + catch (AssemblyExportException) + { + LogErrorMessage(); + return false; + } catch (CriticalFileWriteException e) { log.ErrorFormat(Resources.AssemblyExporter_Error_Exception_0_no_AssemblyResults_exported, e.Message);