try {
return userRoleService.fetchUserRoles(userId, applicationId);
} catch (RuntimeException e) {
String message = MessageFormat.format("Can''t list of roles for user {0} and application {1}: {2}. See server logs for detailed information.", userId, applicationId, e.getLocalizedMessage()); //$NON-NLS-1$
logger.error(message, e);
throw new LoadRoleInstanceException(message, e);
}
}