A exception that is thrown when an operation attempts to access an indexed list element beyond the length of the list.
581582583584585586587588589590591
idx++; iter.next(); } } throw new ListIndexException(); } finally { iter.close(); }
942943944945946947948949950951952