If I have multiple Codelines within a Try statement.
will it break me out as soon as 1 of them doesn't function?/through an error?
and if yes, will it ignore the rest of the code within the try statement that is written after the error?
Update:
I found this Thread which basically explains it as well Why is try {…} finally {…} good; try {…} catch{} bad?