| StringIteratorThrowingIOException.java |
package lectures.exceptions;
import util.annotations.WebDocuments;
import java.io.IOException;
@WebDocuments({"Lectures/Exceptions.pptx", "Lectures/Exceptions.pdf", "Videos/Exceptions.avi"})
public interface StringIteratorThrowingIOException {
public String next () throws IOException ;
public boolean hasNext();
}