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

Methods
N
W
Attributes
[R] error
[R] source
Class Public methods
new(source, error)
# File lib/rubygems/errors.rb, line 78
def initialize(source, error)
  @source = source
  @error = error
end
Instance Public methods
wordy()
# File lib/rubygems/errors.rb, line 85
def wordy
  "Unable to download data from #{@source.uri} - #{@error.message}"
end