class Progressrus::InvalidStoreError

Public Class Methods

new() click to toggle source
Calls superclass method
# 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