catch (NoSuchLdapUserException e) {
log.debug("User: " + userId + " not found.", e);
}
catch (LdapDAOException e) {
log.debug("User: " + userId + " not found, cause: " + e.getMessage(), e);
throw new UserNotFoundTransientException(userId, e.getMessage(), e);
}
}
throw new UserNotFoundException(userId);
}