Exception: Rabbit::InvalidMotionError

Inherits:
Error
  • Object
show all
Defined in:
lib/rabbit/error.rb

Constant Summary

Constants included from GetText

GetText::DOMAIN

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from GetText

included

Constructor Details

#initialize(motion) ⇒ InvalidMotionError

Returns a new instance of InvalidMotionError.



177
178
179
180
# File 'lib/rabbit/error.rb', line 177

def initialize(motion)
  @motion = motion
  super(_("invalid motion: %s") % @motion)
end

Instance Attribute Details

#motionObject (readonly)

Returns the value of attribute motion.



176
177
178
# File 'lib/rabbit/error.rb', line 176

def motion
  @motion
end