class HandcuffsPhaseOutOfOrderError
Public Class Methods
Source
# File lib/handcuffs/errors.rb, line 45 def initialize(not_run_phase, attempted_phase) msg = <<-MESSAGE You tried to run #{attempted_phase.to_s}, but #{not_run_phase.to_s} has not been run MESSAGE super msg end
Calls superclass method