12 lines
246 B
Plaintext
12 lines
246 B
Plaintext
|
# -*- mode: snippet -*-
|
||
|
# name: try
|
||
|
# key: try
|
||
|
# uuid: try
|
||
|
# condition: (not (sp-point-in-string-or-comment))
|
||
|
# --
|
||
|
try {
|
||
|
`%`$0
|
||
|
} catch (${1:Throwable} e) {
|
||
|
${2:System.out.println("Error " + e.getMessage());
|
||
|
e.printStackTrace();}
|
||
|
}
|