* @throws SystemException if a system exception occurred
*/
@Override
public WarrantUserEmailLog remove(Serializable primaryKey)
throws NoSuchWarrantUserEmailLogException, SystemException {
Session session = null;
try {
session = openSession();
WarrantUserEmailLog warrantUserEmailLog = (WarrantUserEmailLog)session.get(WarrantUserEmailLogImpl.class,
primaryKey);
if (warrantUserEmailLog == null) {
if (_log.isWarnEnabled()) {
_log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);