You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Test.java 248B

1234567891011121314
  1. package tjpStaticPart;
  2. import java.io.*;
  3. public class Test {
  4. public static void main(String[] args) throws Exception{
  5. try {
  6. FileInputStream in = new FileInputStream("file-does-not-exist");
  7. } catch (FileNotFoundException e) {
  8. }
  9. }
  10. }