Added indication on IOException with the resource gatherer

This commit is contained in:
themode 2020-12-12 10:29:38 +01:00
parent 5e85c0117a
commit 8dfc52dd15

View File

@ -107,7 +107,7 @@ public class ResourceGatherer {
try {
int resultCode = dataGeneratorProcess.waitFor();
if (resultCode != 0) {
throw new IOException("Data generator finished with non-zero return code " + resultCode);
throw new IOException("Data generator finished with non-zero return code " + resultCode + " verify that you have 'java' cli");
}
} catch (InterruptedException e) {
throw new IOException("Data generator was interrupted.", e);