Exception: Droonga::Distributor::CyclicStepsError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/droonga/distributor.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(steps) ⇒ CyclicStepsError

Returns a new instance of CyclicStepsError.



32
33
34
35
# File 'lib/droonga/distributor.rb', line 32

def initialize(steps)
  @steps = steps
  super("cyclic steps found: <#{steps}>")
end

Instance Attribute Details

#stepsObject (readonly)

Returns the value of attribute steps.



31
32
33
# File 'lib/droonga/distributor.rb', line 31

def steps
  @steps
end