class OEHClient::Exception::IncorrectParameterTypeException
Public Class Methods
new(expected_kind, passed_kind)
click to toggle source
Calls superclass method
# 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