config/sublime/Packages/Groovy/try-__-catch__-finally.sublime-snippet
2012-08-01 21:04:05 -07:00

16 lines
241 B
XML

<snippet>
<content><![CDATA[try {
$0
}
catch(${1:Exception} e) {
$2
}
finally {
$3
}
]]></content>
<tabTrigger>try</tabTrigger>
<scope>source.groovy</scope>
<description>try … catch … finally</description>
</snippet>