class Gemstash::Resource::VersionTooNew

If the storage engine detects a resource was originally saved from a newer version, this error is thrown.

Public Class Methods

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