Exception: Droonga::Dispatcher::Planner::CyclicComponentsError
- Inherits:
-
StandardError
- Object
- StandardError
- Droonga::Dispatcher::Planner::CyclicComponentsError
- Defined in:
- lib/droonga/dispatcher.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.
219 220 221 222 |
# File 'lib/droonga/dispatcher.rb', line 219 def initialize(components) @components = components super("cyclic components found: <#{components}>") end |
Instance Attribute Details
#components ⇒ Object (readonly)
Returns the value of attribute components.
218 219 220 |
# File 'lib/droonga/dispatcher.rb', line 218 def components @components end |