Exception: Iriq::Corpus::StaleRebuild
- Inherits:
-
StandardError
- Object
- StandardError
- Iriq::Corpus::StaleRebuild
- Defined in:
- lib/iriq/corpus.rb
Overview
Storage's activations changed while a rebuild replayed; they now read
stored.
Instance Attribute Summary collapse
-
#stored ⇒ Object
readonly
Returns the value of attribute stored.
Instance Method Summary collapse
-
#initialize(stored) ⇒ StaleRebuild
constructor
A new instance of StaleRebuild.
Constructor Details
#initialize(stored) ⇒ StaleRebuild
408 409 410 411 |
# File 'lib/iriq/corpus.rb', line 408 def initialize(stored) super("activations changed during a rebuild") @stored = stored end |
Instance Attribute Details
#stored ⇒ Object (readonly)
Returns the value of attribute stored.
406 407 408 |
# File 'lib/iriq/corpus.rb', line 406 def stored @stored end |