String yearMonth = request.getParameter("year-month");
if (yearMonth == null) {
// get the current year month
yearMonth = getCurrentYearMonth();
}
return serviceClient.retrievePaginatedInstanceUsage(yearMonth, pageNumber, entriesPerPage);
} catch (Exception e) {
String msg = "Failed to get paginated instance usages.";
log.error(msg, e);
throw new UIException(msg, e);
}