checkTryUsed

Checks if MATLAB's try - catch construct is used. Using this construct is often discouraged because it can degrade code readability. It can be unclear what is expected to go wrong within the try and it is therefore generally advised to write code around what could go wrong.

Exemption tag: %@ok<TRYUS>