Exception: OEHClient::Exception::IncorrectParameterTypeException
- Inherits:
-
Exception
- Object
- Exception
- OEHClient::Exception::IncorrectParameterTypeException
- Defined in:
- lib/oehclient/exception.rb
Instance Method Summary collapse
-
#initialize(expected_kind, passed_kind) ⇒ IncorrectParameterTypeException
constructor
A new instance of IncorrectParameterTypeException.
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 |