Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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. }