unix-conf/.emacs.d/elpa/yasnippet-20160131.948/snippets/scala-mode/try
2016-02-18 14:53:30 +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}
}