try {
return getUserManager(applicationId).authenticate(authenticationData);
} catch (final ConnectionException e) {
final String message = MessageFormat.format("Can''t authenticate user in application {0}: {1}. See server logs for detailed information.", applicationId, e.getLocalizedMessage()); //$NON-NLS-1$
logger.error(message, e);
throw new AuthenticationException(message, e);
}
}