Exception: Droonga::DistributionPlanner::CyclicComponentsError

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(components) ⇒ CyclicComponentsError

Returns a new instance of CyclicComponentsError.



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

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

Instance Attribute Details

#componentsObject (readonly)

Returns the value of attribute components.



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

def components
  @components
end