import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
class HelpFile {
public HelpFile(String filename) throws IOException {
File f = newFile(filename);
if (!f.exists())
thrownew FileNotFoundException(filename);
// normal construction continues
}
}