class OEHClient::Exception::MissingParameterException

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

by a key method

Public Class Methods

new(parameter_list) click to toggle source
Calls superclass method
# File lib/oehclient/exception.rb, line 45
def initialize(parameter_list)

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