Exemple #1
0
 public void consultFile(String fileName) throws InferenceEngineException {
   File f = new File(fileName);
   if (!f.exists())
     throw new InferenceEngineException(
         "File " + fileName + " does not exist in " + System.getProperty("user.dir"));
   _engine.consultFile(fileName);
 }