final Map<String, Object> params) throws DaoException {
try {
return getContext().removeAll(em, _entityClass, filter, params);
} catch (Throwable t) {
Throwable cause = ExceptionUtils.getRealCause(t);
throw new DaoException(cause.getMessage(), cause);
}
}