class Progressrus::StoreNotFoundError

Public Class Methods

new(store) click to toggle source
Calls superclass method
# File lib/progressrus.rb, line 25
    def initialize(store)
      message = <<~MSG
        The store `#{store}` does not exists.
        Available stores: #{Progressrus.stores.keys.join(', ')}
      MSG
      super(message)
    end