String userTrackerId, OrderByComparator obc)
throws NoSuchUserTrackerPathException, SystemException {
List list = findByUserTrackerId(userTrackerId, 0, 1, obc);
if (list.size() == 0) {
throw new NoSuchUserTrackerPathException();
}
else {
return (com.liferay.portal.model.UserTrackerPath)list.get(0);
}
}