Index: Ringtoets/Common/src/Ringtoets.Common.IO/ReferenceLines/IReferenceLineReplaceHandler.cs
===================================================================
diff -u -r00b160ed6c781f5f20b3697143c255fc498b0ef1 -r6f29d235f5ebbbed878265d95fc932695871d067
--- Ringtoets/Common/src/Ringtoets.Common.IO/ReferenceLines/IReferenceLineReplaceHandler.cs (.../IReferenceLineReplaceHandler.cs) (revision 00b160ed6c781f5f20b3697143c255fc498b0ef1)
+++ Ringtoets/Common/src/Ringtoets.Common.IO/ReferenceLines/IReferenceLineReplaceHandler.cs (.../IReferenceLineReplaceHandler.cs) (revision 6f29d235f5ebbbed878265d95fc932695871d067)
@@ -19,6 +19,7 @@
// Stichting Deltares and remain full property of Stichting Deltares at all times.
// All rights reserved.
+using System;
using System.Collections.Generic;
using Core.Common.Base;
using Ringtoets.Common.Data.AssessmentSection;
@@ -42,10 +43,11 @@
/// Replaces the of a
/// and propagates the changes to underlying data structure.
///
- /// The reference line to be updated.
+ /// The reference line to be updated.
/// The new reference line.
/// All objects that have been affected by the replacement.
- IEnumerable Replace(ReferenceLine oldReferenceLine, ReferenceLine newReferenceLine);
+ /// Thrown when any parameter is null.
+ IEnumerable Replace(ReferenceLine originalReferenceLine, ReferenceLine newReferenceLine);
///
/// Perform post-replacement updates.