Java examples for Object Oriented Design:Exception
Throwing an exception from main
import java.io.FileInputStream; import java.io.FileNotFoundException; public class Main { public static void main(String[] args) throws FileNotFoundException { openFile("C:/test.txt"); }/*from w w w . j av a2s. c om*/ public static void openFile(String name) throws FileNotFoundException { FileInputStream f = new FileInputStream(name); } }