Exception: Build::NoApplicableRule

Inherits:
StandardError
  • Object
show all
Defined in:
lib/build/rule.rb

Instance Method Summary collapse

Constructor Details

#initialize(name, arguments) ⇒ NoApplicableRule

Returns a new instance of NoApplicableRule.



206
207
208
209
210
211
# File 'lib/build/rule.rb', line 206

def initialize(name, arguments)
  super "No applicable rule with name #{name}.* for parameters: #{arguments.inspect}"
  
  @name = name
  @arguments = arguments
end