Index: Ringtoets/Common/src/Ringtoets.Common.Service/WaveHeightCalculationService.cs =================================================================== diff -u -r12fa48e392e145311f2f6fe5822a8692594aaf0f -r874233bdb7814bef40b639e0fb4d26a0b86616a0 --- Ringtoets/Common/src/Ringtoets.Common.Service/WaveHeightCalculationService.cs (.../WaveHeightCalculationService.cs) (revision 12fa48e392e145311f2f6fe5822a8692594aaf0f) +++ Ringtoets/Common/src/Ringtoets.Common.Service/WaveHeightCalculationService.cs (.../WaveHeightCalculationService.cs) (revision 874233bdb7814bef40b639e0fb4d26a0b86616a0) @@ -77,6 +77,8 @@ /// The id of the assessment section. /// The norm of the assessment section. /// The object which is used to build log messages. + /// Thrown when an error occurs during parsing of the Hydra-Ring output. + /// Thrown when an error occurs during the calculation. public void Calculate(HydraulicBoundaryLocation hydraulicBoundaryLocation, string hydraulicBoundaryDatabaseFilePath, string ringId, @@ -132,7 +134,7 @@ if (errorOccurred) { - throw new HydraRingFileParserException(lastErrorFileContent); + throw new HydraRingCalculationException(lastErrorFileContent); } } }