BillingServiceClient serviceClient = new BillingServiceClient(config, session);
return serviceClient.getPastInvoice(invoiceId);
} catch (java.lang.Exception e) {
String msg = "Failed to get past invoice for invoice id:" + invoiceId + ".";
log.error(msg, e);
throw new UIException(msg, e);
}
}