Exception: OEHClient::Exception::MissingParameterException

Inherits:
Exception
  • Object
show all
Defined in:
lib/oehclient/exception.rb

Overview

Missing ParameterException is used to identify the list of parameters that are required, but missing

by a key method

Instance Method Summary collapse

Constructor Details

#initialize(parameter_list) ⇒ MissingParameterException

Returns a new instance of MissingParameterException.



45
46
47
48
# File 'lib/oehclient/exception.rb', line 45

def initialize(parameter_list)

	super("Missing the required parameters #{parameter_list.join(', ')}")
end