Exemplo n.º 1
0
 public IteratorAnonymousInnerClass(ExceptionHandlingIterable <T> outerInstance, IEnumerator <T> it)
 {
     this.outerInstance = outerInstance;
     this._it           = it;
 }
Exemplo n.º 2
0
 protected internal virtual void Rethrow(Exception t)
 {
     // TODO it's pretty bad that we have to do this. We should refactor our exception hierarchy
     // to eliminate the need for this hack.
     ExceptionHandlingIterable.SneakyThrow(t);
 }