9 lines
117 B
Plaintext
Raw Normal View History

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