Files
dotfiles/.emacs.d/snippets/scala-mode/try
2017-12-21 17:29:29 +01:00

11 lines
190 B
Plaintext

# -*- mode: snippet -*-
#Author : Sam Halliday
#name : try { .. } catch { case e => ..}
# key: try
# --
try {
$0
} catch {
case e: ${1:Throwable} =>
${2:// TODO: handle exception}
}