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.



246
247
248
249
250
251
# File 'lib/build/rule.rb', line 246

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