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