class Gemstash::Storage::VersionTooNew

If the storage engine detects the base cache directory was originally initialized with a newer version, this error is thrown.

Public Class Methods

new(folder, version) click to toggle source
Calls superclass method
# File lib/gemstash/storage.rb, line 19
def initialize(folder, version)
  super("Gemstash storage version #{Gemstash::Storage::VERSION} does " \
        "not support version #{version} found at #{folder}")
end