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.



230
231
232
233
234
235
# File 'lib/build/rule.rb', line 230

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