123456789_123456789_123456789_123456789_123456789_

Exception: Bundler::Fetcher::BadAuthenticationError

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
Instance Chain:
Inherits: Bundler::HTTPError
Defined in: lib/bundler/fetcher.rb

Overview

This error is raised if HTTP authentication is provided, but incorrect.

Class Method Summary

Instance Method Summary

Constructor Details

.new(remote_uri) ⇒ BadAuthenticationError

[ GitHub ]

  
# File 'lib/bundler/fetcher.rb', line 58

def initialize(remote_uri)
  remote_uri = filter_uri(remote_uri)
  super "Bad username or password for #{remote_uri}.\n" \
    "Please double-check your credentials and correct them."
end