hello
in the following code
[code]
try {
//line 1
//line 2
//line 3
//line 4
} catch(exception e){
//code to handle exception
}
if line 2 throws the exception, after the exception has been handled by the code in the ctach block is execution returned to line3, or code following the try block
