Exception: Zuora::Errors::InvalidValue

Inherits:
StandardError
  • Object
show all
Defined in:
lib/zuora/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(msg = nil, response = nil) ⇒ InvalidValue

Returns a new instance of InvalidValue.



6
7
8
9
# File 'lib/zuora/errors.rb', line 6

def initialize(msg = nil, response = nil)
  @response = response
  super(msg)
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



4
5
6
# File 'lib/zuora/errors.rb', line 4

def response
  @response
end