diff --git a/vtm/src/org/oscim/utils/pool/Inlist.java b/vtm/src/org/oscim/utils/pool/Inlist.java index d7994bff..c31b6469 100644 --- a/vtm/src/org/oscim/utils/pool/Inlist.java +++ b/vtm/src/org/oscim/utils/pool/Inlist.java @@ -136,7 +136,7 @@ public class Inlist<T extends Inlist<T>> { @Override public T next() { if (cur == null) - throw new IllegalStateException(); + throw new IllegalStateException("'cur' item is null"); Inlist tmp = cur; cur = cur.next;