Class Gem::RemoteFetcher::FetchError
In: lib/rubygems/remote_fetcher.rb
Parent: Gem::Exception

A FetchError exception wraps up the various possible IO and HTTP failures that could happen while downloading from the internet.

Methods

new  

Attributes

uri  [RW]  The URI which was being accessed when the exception happened.

Public Class methods

[Source]

    # File lib/rubygems/remote_fetcher.rb, line 26
26:     def initialize(message, uri)
27:       super message
28:       @uri = uri
29:     end

[Validate]