in src/main/java/org/apache/datasketches/Files.java [130:138]
public static RandomAccessFile openRandomAccessFile(final File file, final String mode) {
final RandomAccessFile raf;
try {
raf = new RandomAccessFile(file, mode);
} catch (final FileNotFoundException e) {
throw new RuntimeException(LS + "Failed to open RandomAccessFile " + LS + e);
}
return raf;
}