String questionId, OrderByComparator obc)
throws NoSuchChoiceException, SystemException {
List list = findByQuestionId(questionId, 0, 1, obc);
if (list.size() == 0) {
throw new NoSuchChoiceException();
}
else {
return (com.liferay.portlet.polls.model.PollsChoice)list.get(0);
}
}