Exception: Inferno::Exceptions::RequiredInputsNotFound

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/inferno/exceptions.rb

Instance Method Summary collapse

Constructor Details

#initialize(missing_inputs) ⇒ RequiredInputsNotFound

Returns a new instance of RequiredInputsNotFound.



68
69
70
# File 'lib/inferno/exceptions.rb', line 68

def initialize(missing_inputs)
  super("Missing the following required inputs: #{missing_inputs.join(', ')}")
end