Index: Ringtoets/Piping/src/Ringtoets.Piping.IO/FileUtils.cs =================================================================== diff -u -r5462a7ee52b9491f269d489a094d359f4f02f270 -r33d4f4e7e5404dcc6470dd3d34168b30410109eb --- Ringtoets/Piping/src/Ringtoets.Piping.IO/FileUtils.cs (.../FileUtils.cs) (revision 5462a7ee52b9491f269d489a094d359f4f02f270) +++ Ringtoets/Piping/src/Ringtoets.Piping.IO/FileUtils.cs (.../FileUtils.cs) (revision 33d4f4e7e5404dcc6470dd3d34168b30410109eb) @@ -19,7 +19,7 @@ { if (String.IsNullOrWhiteSpace(path)) { - throw new ArgumentException(Resources.Error_PathMustBeSpecified); + throw new ArgumentException(Resources.Error_Path_must_be_specified); } string name; @@ -29,12 +29,12 @@ } catch (ArgumentException e) { - throw new ArgumentException(String.Format(Resources.Error_PathCannotContainCharacters_0_, + throw new ArgumentException(String.Format(Resources.Error_Path_cannot_contain_characters_0_, String.Join(", ", Path.GetInvalidFileNameChars())), e); } if (String.Empty == name) { - throw new ArgumentException(Resources.Error_PathMustNotPointToFolder); + throw new ArgumentException(Resources.Error_Path_must_not_point_to_folder); } } }