summaryrefslogtreecommitdiff
path: root/src/io/FileTweetReader.java
blob: 216cc261cfc94aaa4da177cd4a7b8dd1e94cf626 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package io;

import java.io.FileInputStream;
import java.io.FileNotFoundException;

/**
 * Reads tweets from file.
 *
 * @author Peter Wu
 */
public class FileTweetReader extends TweetReader {

    public FileTweetReader(String filename) throws FileNotFoundException {
        super(new FileInputStream(filename));
    }
}