in modules/vfs-class-loader/src/main/java/org/apache/accumulo/classloader/vfs/AccumuloVFSClassLoader.java [332:348]
private void addFileToMonitor(FileObject file) throws RuntimeException {
try {
fileMonitor.ifPresent(u -> {
u.getMonitor().addFile(file);
});
} catch (RuntimeException re) {
if (re.getMessage().contains("files-cache")) {
printDebug("files-cache error adding " + file.toString() + " to VFS monitor. "
+ "There is no implementation for files-cache in VFS2");
} else {
printDebug("Runtime error adding " + file.toString() + " to VFS monitor");
}
re.printStackTrace();
throw re;
}
}