/**
  * Add an entry to a Winebook
  *
  * @param id The ID of the wine
  */
 public static void addEntry(Entry ent) throws EntryDoesExistException {
   try {
     WinebookDAO.addEntry(ent);
   } catch (DAException e) {
     throw new EntryDoesExistException(e);
   }
 }