We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b61df0c commit 74fd556Copy full SHA for 74fd556
sass-embedded-host/src/main/java/de/larsgrefer/sass/embedded/connection/ConnectionFactory.java
@@ -56,7 +56,7 @@ public static ProcessConnection fromPackageProvider(DartSassPackageProvider dart
56
*/
57
public static ProcessConnection ofExecutable(File executable) throws IOException {
58
if (executable == null || !executable.isFile()) {
59
- throw new IllegalArgumentException("executable is not a file");
+ throw new IllegalArgumentException(executable + " is not a file");
60
}
61
62
List<String> cmd = new ArrayList<>();
0 commit comments