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