----
try {
  a();
} catch (e) {
  b();
} finally {
  c();
}
----
try
  a()
catch e
  b()
finally
  c()
