String portletId, String groupId, String companyId,
OrderByComparator obc) throws NoSuchQuestionException, SystemException {
List list = findByP_G_C(portletId, companyId, 0, 1, obc);
if (list.size() == 0) {
throw new NoSuchQuestionException();
}
else {
return (com.liferay.portlet.polls.model.PollsQuestion)list.get(0);
}
}