Exception: GemCache::NoAvailableVersionsError

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

Overview

Raised when the version constraints are not inclusive enough to return a version.

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ NoAvailableVersionsError



24
25
26
# File 'lib/gemcache/errors.rb', line 24

def initialize(name)
  super("There are no versions of '#{name}' that meet the specified version constraints")
end