class Gem::SourceFetchProblem

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

Attributes

error[R]
source[R]

Public Class Methods

new(source, error) click to toggle source
# File lib/rubygems/errors.rb, line 78
def initialize(source, error)
  @source = source
  @error = error
end

Public Instance Methods

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