In Files

  • rubygems/errors.rb

Methods

Class/Module Index [+]

Quicksearch

Gem::SourceFetchProblem

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

Attributes

error[R]

The fetch error which is an Exception subclass.

exception[R]

The fetch error which is an Exception subclass.

source[R]

The source that had the fetch problem.

Public Class Methods

new(source, error) click to toggle source

Creates a new SourceFetchProblem for the given source and error.

 
               # File rubygems/errors.rb, line 157
def initialize(source, error)
  @source = source
  @error = error
end
            

Public Instance Methods

wordy() click to toggle source

An English description of the error.

 
               # File rubygems/errors.rb, line 175
def wordy
  @source.uri.password = 'REDACTED' unless @source.uri.password.nil?
  "Unable to download data from #{@source.uri} - #{@error.message}"
end