Index: Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructuresFailureMechanismSectionResultAssemblyFactory.cs =================================================================== diff -u -r24e8ac9b5d1d0e28b83f64cea8ef926165d7619b -rdeeb111cd648c41702c810d6b4f13ecc67098ccb --- Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructuresFailureMechanismSectionResultAssemblyFactory.cs (.../StabilityPointStructuresFailureMechanismSectionResultAssemblyFactory.cs) (revision 24e8ac9b5d1d0e28b83f64cea8ef926165d7619b) +++ Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Data/StabilityPointStructuresFailureMechanismSectionResultAssemblyFactory.cs (.../StabilityPointStructuresFailureMechanismSectionResultAssemblyFactory.cs) (revision deeb111cd648c41702c810d6b4f13ecc67098ccb) @@ -44,7 +44,7 @@ /// A based on the . /// Thrown when /// is null. - /// Thrown when the + /// Thrown when the /// could not be created. public static FailureMechanismSectionAssembly AssembleSimpleAssessment( StabilityPointStructuresFailureMechanismSectionResult failureMechanismSectionResult) @@ -63,7 +63,7 @@ } catch (FailureMechanismSectionAssemblyCalculatorException e) { - throw new AssemblyFactoryException(e.Message, e); + throw new AssemblyException(e.Message, e); } } @@ -76,7 +76,7 @@ /// The belonging to this calculation. /// A . /// Thrown when any parameter is null. - /// Thrown when the + /// Thrown when the /// could not be created. public static FailureMechanismSectionAssembly AssembleDetailedAssembly( StabilityPointStructuresFailureMechanismSectionResult failureMechanismSectionResult, @@ -114,7 +114,7 @@ } catch (FailureMechanismSectionAssemblyCalculatorException e) { - throw new AssemblyFactoryException(e.Message, e); + throw new AssemblyException(e.Message, e); } } }