An error that indicates we weren’t able to fetch some data from a source
Attributes
Read
The source that had the fetch problem.
Class Methods
2.3
View on GitHub
# File tmp/rubies/ruby-2.3.8/lib/rubygems/errors.rb, line 111
def initialize(source, error)
@source = source
@error = error
end
Creates a new SourceFetchProblem for the given source and error.
Instance Methods
#
2.3
View on GitHub
# File tmp/rubies/ruby-2.3.8/lib/rubygems/errors.rb, line 129
def wordy
"Unable to download data from #{@source.uri} - #{@error.message}"
end
An English description of the error.