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.



184
185
186
187
# File 'lib/rabbit/error.rb', line 184

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

Instance Attribute Details

#motionObject (readonly)

Returns the value of attribute motion.



183
184
185
# File 'lib/rabbit/error.rb', line 183

def motion
  @motion
end