Exception: Droonga::Dispatcher::Planner::CyclicComponentsError

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

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#componentsObject (readonly)

Returns the value of attribute components.



218
219
220
# File 'lib/droonga/dispatcher.rb', line 218

def components
  @components
end