in src/main/java/org/apache/datasketches/Files.java [66:74]
public static void checkFileName(final String fileName) {
if (fileName == null) {
throw new RuntimeException(LS + "FileName is null.");
}
if (fileName.length() == 0) {
throw new RuntimeException(LS + "FileName is empty.");
}
return;
}