blob: 9c36129fcc172185d4ffc62f8033da8ddbe0a962 [file] [log] [blame]
// "Generalize catch for 'java.io.FileNotFoundException' to 'java.lang.IllegalAccessException'" "false"
import java.io.*;
public class c1 {
void f() {
FileInputStream fis = null;
try {
fis = new FileInputStream("");
DataInputStream dis = new DataInputStream(fis);
<caret>throw new IllegalAccessException();
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
}