类 Gem::RemoteFetcher::FetchError

FetchError 异常封装了从互联网下载时可能发生的各种 IO 和 HTTP 错误。

属性

original_uri[RW]

发生异常时正在访问的 URI。

uri[RW]

发生异常时正在访问的 URI。

公共类方法

new(message, uri) 点击以切换源
调用父类方法
# File 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