An error that indicates we weren't able to fetch some data from a source
Creates a new SourceFetchProblem for the given source and error.
# File ruby-3.1.2/lib/rubygems/errors.rb, line 152
def initialize(source, error)
@source = source
@error = error
end
An English description of the error.
# File ruby-3.1.2/lib/rubygems/errors.rb, line 170
def wordy
"Unable to download data from #{Gem::Uri.new(@source.uri).redacted} - #{@error.message}"
end