public byte[] loadFile(Path file) {
   try {
     return fs.loadFile(file);
   } catch (FileException ex) {
     Logger.getLogger(KnowledgeDomainServiceEntryPointImpl.class.getName())
         .log(Level.SEVERE, null, ex);
   }
   return null;
 }