/** @see Dao#getSelectStarRowMapper() */
 public GenericRowMapper<T> getSelectStarRowMapper() {
   try {
     return dao.getSelectStarRowMapper();
   } catch (SQLException e) {
     logMessage(e, "getSelectStarRowMapper threw exception");
     throw new RuntimeException(e);
   }
 }