Exception: Boson::MethodConflictError

Inherits:
LoaderError
  • Object
show all
Defined in:
lib/boson/loader.rb

Overview

Raised if a library has methods which conflict with existing methods

Constant Summary collapse

MESSAGE =
"The following commands conflict with existing commands: %s"

Instance Method Summary collapse

Constructor Details

#initialize(conflicts) ⇒ MethodConflictError

Returns a new instance of MethodConflictError.



5
6
7
# File 'lib/boson/loader.rb', line 5

def initialize(conflicts)
  super MESSAGE % conflicts.join(', ')
end