CodeRush shows the Cannot yield in the body of a try block with a catch clause code issue if the yield keyword is located within the body of a try block with a catch clause.
Fix
Move the yield statement out of the try block.
Purpose
Highlights the yield statements, which would cause the Cannot yield a value in the body of a try block with a catch clause compilation error.