protected Entity selectForcibly(Long id) throws ServiceException {
AssertionUtil.assertIsValid(ID, id);
try {
return datastoreService.get(KeyFactory.createKey(kindOfEntity, id));
} catch (EntityNotFoundException e) {
throw new ServiceException(e);
}
}