Exception: Bundler::Fetcher::BadAuthenticationError
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
self,
::Bundler::HTTPError ,
::Bundler::BundlerError ,
StandardError
|
|
Instance Chain:
self,
::Bundler::HTTPError ,
::Bundler::BundlerError ,
StandardError
|
|
Inherits: |
Bundler::HTTPError
|
Defined in: | lib/bundler/fetcher.rb |
Overview
This error is raised if HTTP authentication is provided, but incorrect.
Class Method Summary
- .new(remote_uri) ⇒ BadAuthenticationError constructor
::Bundler::BundlerError
- Inherited
Instance Method Summary
::Bundler::HTTPError
- Inherited
Constructor Details
.new(remote_uri) ⇒ BadAuthenticationError
# File 'lib/bundler/fetcher.rb', line 57
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