packageorg.training.exceptions;
public classIndexOutOfBounds {
public static void main(String[] args) {
String s = "abc";
for (int i = 0 ; i < 4 ; i++) {
try {
System.out.println(s.charAt(i));
}catch(IndexOutOfBoundsException iobe){
System.err.println("Index Out Of Bounds Exception has occured");
}
}
}
}
Output:
a
b
c
Index Out Of Bounds Exception has occured
No comments:
Post a Comment