VSCode snippet for wrapping code in a try/except
"Try/Except wrap": {
"prefix": "try_wrap",
"body": [
"try:",
"\t${TM_SELECTED_TEXT}",
"except ${1:exception_type}:",
"\t$0"
],
"description": "Code snippet for wrapping code in a try/except"
},