Exception: Progressrus::InvalidStoreError

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

Instance Method Summary collapse

Constructor Details

#initializeInvalidStoreError

Returns a new instance of InvalidStoreError.



14
15
16
17
18
19
20
21
# File 'lib/progressrus.rb', line 14

def initialize
  message = <<~MSG
    The store needs to implement `persist`, `scope`, `find` and `flush`
    We have a base class that your store can inherit from:
      Progressrus::Store::Base
  MSG
  super(message)
end