Exception: Telerivet::InvalidParameterException

Inherits:
APIException
  • Object
show all
Defined in:
lib/telerivet.rb

Instance Attribute Summary collapse

Attributes inherited from APIException

#code

Instance Method Summary collapse

Constructor Details

#initialize(msg, code, param) ⇒ InvalidParameterException

Returns a new instance of InvalidParameterException.



299
300
301
302
# File 'lib/telerivet.rb', line 299

def initialize(msg, code, param)
    @param = param
    super(msg, code)
end

Instance Attribute Details

#paramObject (readonly)

Returns the value of attribute param.



297
298
299
# File 'lib/telerivet.rb', line 297

def param
  @param
end