Skip to content

Commit 74fd556

Browse files
committed
improve error message
1 parent b61df0c commit 74fd556

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sass-embedded-host/src/main/java/de/larsgrefer/sass/embedded/connection/ConnectionFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public static ProcessConnection fromPackageProvider(DartSassPackageProvider dart
5656
*/
5757
public static ProcessConnection ofExecutable(File executable) throws IOException {
5858
if (executable == null || !executable.isFile()) {
59-
throw new IllegalArgumentException("executable is not a file");
59+
throw new IllegalArgumentException(executable + " is not a file");
6060
}
6161

6262
List<String> cmd = new ArrayList<>();

0 commit comments

Comments
 (0)