Exception: OEHClient::Exception::IncorrectParameterTypeException

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

Instance Method Summary collapse

Constructor Details

#initialize(expected_kind, passed_kind) ⇒ IncorrectParameterTypeException

Returns a new instance of IncorrectParameterTypeException.



55
56
57
58
# File 'lib/oehclient/exception.rb', line 55

def initialize(expected_kind, passed_kind)

	super("Incorrect Parameter Type.  Expected #{expected_kind} but received #{passed_kind}")
end