11 lines
139 B
Plaintext
Raw Normal View History

# -*- mode: snippet -*-
# name: try-catch-finally statement
# key: tryf
# --
try {
$0
} catch (${1:ErrorType} ${2:e}) {
} finally {
}