E0122: missing catch or finally clause for try statement
A try statement has a list of statements followed by an optional catch block
followed by an optional finally block. It is a syntax error to omit both the
catch block and the finally block:
To fix this error, remove the try keyword:
Alternatively, add a catch block after the try block:
Alternatively, add a finally block after the try block: