citation java du jour

package beg_assignment4;

import java.io.IOException;
import java.util.List;

public interface QuoteProvider {
    public String getQuote() throws IOException;
    public List<String> getHistory() throws IOException;
    public void clearHistory() throws IOException;
}
Spotless Salamander