An error that indicates we weren't able to fetch some data from a source

Methods
N
W
Attributes
[R] error

The fetch error which is an Exception subclass.

[R] exception

The fetch error which is an Exception subclass.

[R] source

The source that had the fetch problem.

Class Public methods
new(source, error)

Creates a new SourceFetchProblem for the given source and error.

# File lib/rubygems/errors.rb, line 80
def initialize(source, error)
  @source = source
  @error = error
end
Instance Public methods
wordy()

An English description of the error.

# File lib/rubygems/errors.rb, line 98
def wordy
  "Unable to download data from #{@source.uri} - #{@error.message}"
end