PPT Slide
public static void A( ) {
int array[ ] = new int[5];
System.out.println( "In A's try." );
catch( ArrayIndexOutOfBoundsException error ) {
System.out.println( "In A's catch." );
public static void main( String argv[ ] ) {
System.out.println( "In main's catch." );
System.out.println( "After try in main." );
Exceptions: Another Example