From 6e6c4b067ce26dec03a3039345cdf0dbe2c760f1 Mon Sep 17 00:00:00 2001 From: Stanley Goldman Date: Mon, 31 Jul 2017 16:22:32 -0400 Subject: [PATCH] NiceIO Exception Fix --- src/GitHub.Api/IO/NiceIO.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GitHub.Api/IO/NiceIO.cs b/src/GitHub.Api/IO/NiceIO.cs index 9148466e6..263380592 100644 --- a/src/GitHub.Api/IO/NiceIO.cs +++ b/src/GitHub.Api/IO/NiceIO.cs @@ -62,7 +62,7 @@ private static StringComparison PathStringComparison public NPath(string path) { if (path == null) - throw new ArgumentNullException(); + throw new ArgumentNullException("path"); path = ParseDriveLetter(path, out _driveLetter);