BillingServiceClient serviceClient = new BillingServiceClient(config, session);
return serviceClient.getOutstandingBalance(tenantDomain);
}catch (Exception exp){
String msg = "Failed to get balance info for domain: " + tenantDomain;
log.error(msg, exp);
throw new UIException(msg, exp);
}
}