if (id != null) {
Object old = entityMap.get(id);
if (old != null) {
entityMap.remove(id);
} else {
throw new PrevaylerDataRetrievalException("Cannot find object with id: " + id);
}
} else {
throw new PrevaylerUnsavedObjectException("Cannot delete unsaved object!");
}
} catch (IllegalAccessException actual) {