Add the code at the end of your block try. Obviously, you will only ever get there if there was no exception before:
try {
} catch {
} finally {
}
You should probably change your capture so that you only break the exceptions that you expect, and don't lay out anything that might include exceptions thrown into the "code you want to run if everything is ok."
source
share