class Gem::RemoteFetcher::FetchError

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

Attributes

uri[RW]

The URI which was being accessed when the exception happened.

Public Class Methods

new(message, uri) click to toggle source
Calls superclass method Exception.new
# File lib/rubygems/remote_fetcher.rb, line 26
def initialize(message, uri)
 super message
 @uri = uri
end