ds.delete( key );
}
catch (ConcurrentModificationException e) {
log.error("entityDelete():" + e + ", key=" + key );
throw new DaoException("Concurrent transaction detected on entity key=" + key);
}
catch (IllegalArgumentException e) {
log.warn("entityDelete():" + e + ", key=" + key );
return false;