package utp;

public class ActiveNullGenerator<T> implements IActiveGenerator<T> {

	@Override
	public T value() throws StopException {
		throw new StopException();
	}

	@Override
	public IActiveGenerator<T> next() {
		return this;
	}

}
