Index: Ringtoets/Piping/src/Ringtoets.Piping.IO/Importers/PipingConfigurationImporter.cs =================================================================== diff -u -r725daddfbeb109d25e0818175d888c34da124ada -r668333e7c188d28d6c90451b34b2c98fae69d34c --- Ringtoets/Piping/src/Ringtoets.Piping.IO/Importers/PipingConfigurationImporter.cs (.../PipingConfigurationImporter.cs) (revision 725daddfbeb109d25e0818175d888c34da124ada) +++ Ringtoets/Piping/src/Ringtoets.Piping.IO/Importers/PipingConfigurationImporter.cs (.../PipingConfigurationImporter.cs) (revision 668333e7c188d28d6c90451b34b2c98fae69d34c) @@ -251,6 +251,12 @@ } } + /// + /// Reads the entry point and exit point. + /// + /// The calculation read from the imported file. + /// The calculation to configure. + /// Thrown when the entry point or exit point is invalid. private static void ReadEntryExitPoint(ReadPipingCalculation readCalculation, PipingCalculationScenario pipingCalculation) { if (readCalculation.EntryPointL.HasValue) @@ -315,10 +321,13 @@ /// /// The calculation read from the imported file. /// The calculation to configure. - /// Thrown when the - /// has a set which is not available in the . - private static void ReadStochasticSoilProfile(ReadPipingCalculation readCalculation, - PipingCalculationScenario pipingCalculation) + /// Thrown when the has: + /// + /// a set but no is specified; + /// a set which is not available in the . + /// + /// + private static void ReadStochasticSoilProfile(ReadPipingCalculation readCalculation, PipingCalculationScenario pipingCalculation) { if (readCalculation.StochasticSoilProfile != null) { @@ -341,6 +350,12 @@ } } + /// + /// Reads the stochasts. + /// + /// The calculation read from the imported file. + /// The calculation to configure. + /// Thrown when a stochast value (mean or standard deviation) is invalid. private static void ReadStochasts(ReadPipingCalculation readCalculation, PipingCalculationScenario pipingCalculation) { if (readCalculation.PhreaticLevelExitMean.HasValue && readCalculation.PhreaticLevelExitStandardDeviation.HasValue)