Files
dotfiles/emacs/.emacs.d/snippets/java-mode/tryf
Fabio Scotto di Santolo 07dfd8687a Added snippets for Emacs
2026-01-07 09:31:19 +01:00

13 lines
116 B
Plaintext

#name : try, catch & finally
# --
try {
$0
}
catch (${1:Exception} ${2:e}) {
mLogger.error($2);
}
finally {
}