/** @see Dao#refresh(Object) */
 public int refresh(T data) {
   try {
     return dao.refresh(data);
   } catch (SQLException e) {
     logMessage(e, "refresh threw exception on: " + data);
     throw new RuntimeException(e);
   }
 }