throw new IOException();
}
}
private static void generateRandomTrevniFile(String schema, String count, String trevni) throws IOException {
Tool tool = new TrevniCreateRandomTool();
List<String> args = new ArrayList<String>();
args.add(schema);
args.add(count);
args.add(trevni);
try {
tool.run(System.in, System.out, System.err, args);
} catch (Exception e) {
LOG.info("Could not generate trevni file: " + trevni, e);
throw new IOException();
}
}