edu.isi.nlp.validators.FileExists Maven / Gradle / Ivy
The newest version!
package edu.isi.nlp.validators;
import java.io.File;
public final class FileExists implements Validator {
@Override
public void validate(File f) throws ValidationException {
if (!f.exists()) {
throw new ValidationException(String.format("File %s does not exist", f.getAbsolutePath()));
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy