codeclimate/codeclimate-rubocop

View on GitHub
config/contents/lint/rescue_exception.md

Summary

Maintainability
Test Coverage
This cop checks for *rescue* blocks targeting the Exception class.

### Example:

    # bad

    begin
      do_something
    rescue Exception
      handle_exception
    end

### Example:

    # good

    begin
      do_something
    rescue ArgumentError
      handle_exception
    end