This is a structured exception block.
Any thrown exception in try block is caught in catch block.
The structured exception block has following form:
try //begin of try-catch
block { //block, that can throw exception }
catch { //block, that process an exception };
Exception is described in _exception variable.