I googled it and found this:
try
... (block) ...
end
If an error occurs in the block, the control immediately jumps to the first statement after END, and
the error will be ignored.
another form,
try
... (block) ...
catch err do
... (handler) ...
end
Auto-translated