Stop show with sound -- Keyboard shortcut: 'x'  Next slide in show -- Keyboard shortcut: 'n'  2 minutes, 7 secondsUndtagelseshåndtering - slide 19 : 26

Finally i Java's try blok (1) 

Finally konstruktionen i forlængelsen af try-catch muliggør en samlet afslutning af normaltilfældet og undtagelsestilfældet i Java
 

try{
 kommando-liste-0
}
catch (exception-klasse-1 formel-parameter-1){
 kommando-liste-1
}
catch (exception-klasse-2 formel-parameter-2){
 kommando-liste-2
}
...
finally{
 kommando-liste-3
}