Class
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
lib/rubygems/errors.rb
View on GitHub
# File tmp/rubies/ruby-2.7.6/lib/rubygems/errors.rb, line 165
def initialize(source, error)
@source = source
@error = error
end
Creates a new SourceFetchProblem
for the given source
and error
.
Instance Methods
#
lib/rubygems/errors.rb
View on GitHub
# File tmp/rubies/ruby-2.7.6/lib/rubygems/errors.rb, line 183
def wordy
@source.uri.password = 'REDACTED' unless @source.uri.password.nil?
"Unable to download data from #{@source.uri} - #{@error.message}"
end
An English
description of the error.