* @throws SystemException if a system exception occurred
*/
@Override
public LFAnswer findByPrimaryKey(Serializable primaryKey)
throws NoSuchLFAnswerException, SystemException {
LFAnswer lfAnswer = fetchByPrimaryKey(primaryKey);
if (lfAnswer == null) {
if (_log.isWarnEnabled()) {
_log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
}