Add new `Lint/ConstantOverwrittenInRescue ` cop by ydah · Pull Request #10722 · rubocop/rubocop

This PR is add a new cop. Checks for overwriting an exception with an exception result by use rescue =>. @example # bad begin something rescue => StandardError end # good begin something rescu...