Maintenance of Ruby 2.0.0 ended on February 24, 2016. Read more

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]
source[R]

Public Class Methods

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

Public Instance Methods

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