// $Id$ import java.io.*; class ArrayFileFinally{ public static void main(String[] args){ try{ new FileInputStream(args[0]); }catch(FileNotFoundException e){ System.out.println("1: Caught "+e); }catch(ArrayIndexOutOfBoundsException e){ System.out.println("2: Caught "+e); System.exit(0); }finally{ System.out.println("Called except exit"); } } }