An error that indicates we weren't able to fetch some data from a source
Methods
Attributes
| [R] | error | The fetch error which is an Exception subclass. |
| [R] | exception | The fetch error which is an Exception subclass. |
| [R] | source | The source that had the fetch problem. |
Class Public methods
new(source, error)
Link
Creates a new SourceFetchProblem for
the given source and error.
Source: show
# File lib/rubygems/errors.rb, line 80 def initialize(source, error) @source = source @error = error end
Instance Public methods