Stop show with sound  Next slide in show -- Keyboard shortcut: 'n'  2 minutes, 4 secondsLecture 10 - slide 16 : 26
Program 1
try {
  ...
  int i = Integer.parseInt(str.substring(j,k));
  ...
} 
catch (StringIndexOutOfBoundsException e){
  ...
}
catch (NumberFormatException e){
  ...
}
catch (Exception e){
  ...
}