Exception: Droonga::DistributionPlanner::CyclicComponentsError
- Inherits:
-
StandardError
- Object
- StandardError
- Droonga::DistributionPlanner::CyclicComponentsError
- Defined in:
- lib/droonga/distribution_planner.rb
Instance Attribute Summary collapse
-
#components ⇒ Object
readonly
Returns the value of attribute components.
Instance Method Summary collapse
-
#initialize(components) ⇒ CyclicComponentsError
constructor
A new instance of CyclicComponentsError.
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
#components ⇒ Object (readonly)
Returns the value of attribute components.
31 32 33 |
# File 'lib/droonga/distribution_planner.rb', line 31 def components @components end |