Exception: Bundler::Plugin::Index::CommandConflict
- Inherits:
-
Bundler::PluginError
- Object
- StandardError
- BundlerError
- Bundler::PluginError
- Bundler::Plugin::Index::CommandConflict
- Defined in:
- lib/bundler/plugin/index.rb
Instance Method Summary collapse
-
#initialize(plugin, commands) ⇒ CommandConflict
constructor
A new instance of CommandConflict.
Methods inherited from BundlerError
Constructor Details
#initialize(plugin, commands) ⇒ CommandConflict
Returns a new instance of CommandConflict.
10 11 12 13 |
# File 'lib/bundler/plugin/index.rb', line 10 def initialize(plugin, commands) msg = "Command(s) `#{commands.join("`, `")}` declared by #{plugin} are already registered." super msg end |