Skip to content

Commit eb43213

Browse files
committed
Throw less generic exception
1 parent 7ede532 commit eb43213

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

junit-platform-reporting/src/main/java/org/junit/platform/reporting/open/xml/OpenTestReportGeneratingListener.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ private static Process startProcess(String[] args) {
216216
process = Runtime.getRuntime().exec(args);
217217
}
218218
catch (IOException e) {
219-
throw new RuntimeException(e);
219+
throw new UncheckedIOException("Failed to start process", e);
220220
}
221221
return process;
222222
}

0 commit comments

Comments
 (0)