1: public void readFromFile(String fileName) throws FileNotFoundException, 2: IOException,MyException { 3: try { 4: ... 5: // filename에 대한 널을 조사 6: if ( fileName == NULL ) throw new MyException("에러“); 7: File myFile = new File(fileName); 8: FileReader fr = new FileReader(myFile); 9: ... 10: // 함수 루틴에서 모든 가능한 예외에 대해서 처리한다. 11: } catch (FileNotFoundException fe) {...} 12: } catch (IOException ie) {...} 13: }