Exception: GemCache::GemNotFoundError

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

Overview

Raised when /info/<gem> cannot be found on the remote gem host.

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ GemNotFoundError

Returns a new instance of GemNotFoundError.



6
7
8
# File 'lib/gemcache/errors.rb', line 6

def initialize(name)
  super("The '#{name}' gem could not be found on '#{@@host}'")
end