HttpSession session) throws Exception {
try {
TenantServiceClient serviceClient = new TenantServiceClient(config, session);
return serviceClient.retrieveTenants();
} catch (Exception e) {
String msg = "Failed to get the minimum information bean of tenants. ";
log.error(msg, e);
throw new Exception(msg, e);
}