Exception: Bundler::Plugin::Index::SourceConflict

Inherits:
Bundler::PluginError show all
Defined in:
lib/bundler/plugin/index.rb

Instance Method Summary collapse

Methods inherited from BundlerError

all_errors, status_code

Constructor Details

#initialize(plugin, sources) ⇒ SourceConflict

Returns a new instance of SourceConflict.



17
18
19
20
# File 'lib/bundler/plugin/index.rb', line 17

def initialize(plugin, sources)
  msg = "Source(s) `#{sources.join("`, `")}` declared by #{plugin} are already registered."
  super msg
end