Skip to content

Commit 60f3883

Browse files
committed
Update JDKUtils.java
1 parent 3510b0f commit 60f3883

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/github/fvarrui/javapackager/utils/JDKUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ private static Map<String, String> getRelease(File jdkPath) throws FileNotFoundE
2323
Map<String, String> propertiesMap = new HashMap<>();
2424
File releaseFile = new File(jdkPath, "release");
2525
if (!releaseFile.exists()) {
26-
throw new FileNotFoundException("release file not found");
26+
throw new FileNotFoundException("release file not found: " + releaseFile);
2727
}
2828
Properties properties = new Properties();
2929
properties.load(new FileInputStream(releaseFile));

0 commit comments

Comments
 (0)