We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6a8f730 + 09fff5e commit 2a7cd47Copy full SHA for 2a7cd47
1 file changed
src/ParentElement.ReProcess/CommandBuilder.cs
@@ -68,7 +68,7 @@ public CommandBuilder WithArguments(IEnumerable<string> arguments)
68
/// </summary>
69
/// <param name="path">A <see langword="string"/> representing the Working Directory for the command</param>
70
/// <returns>The current <see cref="CommandBuilder" /> instance </returns>
71
- /// <exception cref="System.ArgumentException">Thrown when <paramref name="path"/> is specified and not a valid directory</exception>
+ /// <exception cref="System.IO.DirectoryNotFoundException">Thrown when <paramref name="path"/> is specified and not a valid directory</exception>
72
public CommandBuilder WithWorkingDirectory(string path)
73
{
74
if (!string.IsNullOrWhiteSpace(path) && !Directory.Exists(path))
0 commit comments