| Index: lib/core/sequences.dart
|
| diff --git a/lib/core/sequences.dart b/lib/core/sequences.dart
|
| index 2489881fa499b877c15421c1f5be115b4170e4da..a9bc87f04f919bff50618464d8cacfea0df6fa34 100644
|
| --- a/lib/core/sequences.dart
|
| +++ b/lib/core/sequences.dart
|
| @@ -198,7 +198,7 @@ class SequenceIterator<E> implements Iterator<E> {
|
| bool get hasNext => _position < _sequence.length;
|
| E next() {
|
| if (hasNext) return _sequence[_position++];
|
| - throw new NoMoreElementsException();
|
| + throw new StateError("No more elements");
|
| }
|
| }
|
|
|
|
|