Exception: OEHClient::Exception::MissingParameterException
- Inherits:
-
Exception
- Object
- Exception
- OEHClient::Exception::MissingParameterException
- 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
-
#initialize(parameter_list) ⇒ MissingParameterException
constructor
A new instance of MissingParameterException.
Constructor Details
permalink #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 |