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