class HandcuffsPhaseUndefinedError

Public Class Methods

new(undefined_phases) click to toggle source
Calls superclass method
# File lib/handcuffs/errors.rb, line 54
    def initialize(undefined_phases)
      msg = <<-MESSAGE
        The following migrations do not have a phase defined
      #{undefined_phases.to_sentence}
      MESSAGE
      super msg
    end