class RuboCop::Runner::InfiniteCorrectionLoop
An exception indicating that the inspection loop got stuck correcting offenses back and forth.
Attributes
offenses[R]
Public Class Methods
new(path, offenses)
click to toggle source
Calls superclass method
# File lib/rubocop/runner.rb, line 14 def initialize(path, offenses) super "Infinite loop detected in #{path}." @offenses = offenses end