Skip to content

Instantly share code, notes, and snippets.

@fermopili
Created May 23, 2017 07:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fermopili/ae44308b725abbc2128f4b5d0c976bc1 to your computer and use it in GitHub Desktop.
Save fermopili/ae44308b725abbc2128f4b5d0c976bc1 to your computer and use it in GitHub Desktop.
com.javarush.task.task38.task3802
package com.javarush.task.task38.task3802;
/*
Проверяемые исключения (checked exception)
*/
import java.io.FileReader;
public class VeryComplexClass
{
void veryComplexMethod() throws Exception
{
//напишите тут ваш код
FileReader fileReader = new FileReader("*.*");
}
public static void main(String[] args)//throws Exception
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment