List billCategoryList = (description == null)
? system.billCategory.getAll()
: system.billCategory.getAll(description);
if (billCategoryList.isEmpty()) {
throw new BillSubCategoryDoesNotExistsInPersistenceException(description);
}
return billCategoryList;
}