A FetchError
exception wraps up the various possible IO
and HTTP failures that could happen while downloading from the internet.
Attributes
Read & Write
The URI
which was being accessed when the exception happened.
Class Methods
lib/rubygems/remote_fetcher.rb
View on GitHub
# File tmp/rubies/ruby-master/lib/rubygems/remote_fetcher.rb, line 28
def initialize(message, uri)
uri = Gem::Uri.new(uri)
super uri.redact_credentials_from(message)
@original_uri = uri.to_s
@uri = uri.redacted.to_s
end
No documentation available