public class TxtInputStream extends FileInputStream { public TxtInputStream(String fileName) throws IOException, UnsupportedEncodingException { super(fileName); if (!fileName.endsWith(".txt")) { super.close(); throw new UnsupportedEncodingException(); } } public static void main(String[] args) { } }