Method: Bundler::Fetcher::BadAuthenticationError#initialize
- Defined in:
- lib/bundler/fetcher.rb
#initialize(remote_uri) ⇒ BadAuthenticationError
Returns a new instance of BadAuthenticationError.
59 60 61 62 63 |
# File 'lib/bundler/fetcher.rb', line 59 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 |