Index: Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Parsers/HydraRingDatabaseParseHelper.cs
===================================================================
diff -u -rc235d644419c9f398fd806f7dce2592f0974ac97 -r9bc5d8bc179ba0be25c9746859da3726b8b6a33e
--- Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Parsers/HydraRingDatabaseParseHelper.cs (.../HydraRingDatabaseParseHelper.cs) (revision c235d644419c9f398fd806f7dce2592f0974ac97)
+++ Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Parsers/HydraRingDatabaseParseHelper.cs (.../HydraRingDatabaseParseHelper.cs) (revision 9bc5d8bc179ba0be25c9746859da3726b8b6a33e)
@@ -28,22 +28,22 @@
namespace Ringtoets.HydraRing.Calculation.Parsers
{
///
- /// Helper class for methods that apply for parsing the output from the database.
+ /// Helper class for methods that apply for parsing output from a Hydra-Ring database.
///
internal static class HydraRingDatabaseParseHelper
{
///
- /// Parses the file.
+ /// Parses the Hydra-Ring output database.
///
/// The path to the directory which contains
/// the output of the Hydra-Ring calculation.
/// The query to perform when reading the database.
/// The section id to get the output for.
/// The exception message when there is no result.
- /// The action to perform for getting the results of the
- /// database.
- /// Thrown when the reader
- /// encounters an error while reading the database.
+ /// The action to perform for parsing the results from the database.
+ /// Thrown when any input parameter is null.
+ /// Thrown when the reader encounters an error while
+ /// reading the database.
public static void Parse(string workingDirectory,
string query,
int sectionId,
@@ -62,7 +62,7 @@
}
catch (SQLiteException e)
{
- throw new HydraRingFileParserException(Resources.ParseFile_Cannot_read_result_in_output_file, e);
+ throw new HydraRingFileParserException(Resources.Parse_Cannot_read_result_in_output_file, e);
}
catch (Exception e) when (e is HydraRingDatabaseReaderException || e is InvalidCastException)
{