Question: Can you please help me solve this java program Getting familiar with try - catch - finally Create an Eclipse Project called javaProgam. Create a
Can you please help me solve this java program

Getting familiar with try - catch - finally Create an Eclipse Project called javaProgam. Create a class called ExceptionTryCatchTest. Write a try catch and finally block of code in the class. You can catch the StringIndexOutOfBoundsException exception in the catch block. Make this error happen by creating a String with your surnamefamily name (e.g. String s= "Raeside") and try to access a character beyond the length of the string (e.g. char c = s.charAt(7) : This is more than ' R "a"e" s" i "d" e' string holds and will throw the exception for string out of bounds). Place an output statement in the finally block to verify that the finally block has been called. Call printStackTrace() (e.printStackTrace()) within the catch block. Output your surname in the finally block using System.out.println. Required activities and marking guideline: - Implemented try block - Implement catch StringIndexOutOfBoundsException - Implement finally block with output message - Call print stack trace
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
