| StringIteratorThrowingException.java |
package lectures.exceptions.extra;
import util.annotations.WebDocuments;
@WebDocuments({"Lectures/ExceptionsExtra.pptx", "Lectures/ExceptionsExtra.pdf", "Videos/ExceptionsExtra.avi"})
public interface StringIteratorThrowingException {
public String next () throws Exception ;
public boolean hasNext();
}