I know this has been asked before and resolved at the time as a bug in adwords script code itself, but I am encountering the above error again in the following code....(line 65 is the line beginning "while...")
var labelSelector = AdWordsApp.labels()
.withCondition('LabelNames STARTS_WITH_IGNORE_CASE 20141112')
.orderBy("LabelNames DESC");
var labelIterator = labelSelector.get();
while (labelIterator.hasNext()) {
var label = labelIterator.next();
Logger.log(Utilities.formatString('Currently working on label', label));