# -*- mode: snippet -*- # key: try # contributor: Translated from TextMate Snippet # name: Try/Except/Else/Finally # -- try: ${1:pass} except${2: ${3:Exception}, ${4:e}}: ${5:raise} else: ${6:pass} finally: ${7:pass}