عندما نقوم باستخدام Catching Exception لحماية الكود من أي خطأ
try{
System.out.println( "s.charAt(28): " + s.charAt(28) ); // s
a = Integer.parseInt(s);
}
catch( StringIndexOutOfBoundsException e1 ) {
System.out.println( "Index is not exist in the string!" )
}
}finally
System.out.println( "finally codes always execute" );
}