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