Exception: ZuoraAPI::Exceptions::ZuoraAPITemporaryError
- Defined in:
- lib/zuora_api/exceptions.rb
Instance Attribute Summary collapse
-
#code ⇒ Object
readonly
Returns the value of attribute code.
-
#default_message ⇒ Object
writeonly
Sets the attribute default_message.
-
#errors ⇒ Object
readonly
Returns the value of attribute errors.
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(message = nil, response = nil, errors = [], successes = [], *args) ⇒ ZuoraAPITemporaryError
constructor
A new instance of ZuoraAPITemporaryError.
- #to_s ⇒ Object
Methods inherited from Error
Constructor Details
#initialize(message = nil, response = nil, errors = [], successes = [], *args) ⇒ ZuoraAPITemporaryError
Returns a new instance of ZuoraAPITemporaryError.
197 198 199 200 201 202 203 |
# File 'lib/zuora_api/exceptions.rb', line 197 def initialize( = nil, response = nil, errors = [], successes = [], *args) @code = response.class.to_s == "HTTParty::Response" ? response.code : nil @message = () @response = response @default_message = "There is a temporary error with zuora system." @errors = errors end |
Instance Attribute Details
#code ⇒ Object (readonly)
Returns the value of attribute code.
194 195 196 |
# File 'lib/zuora_api/exceptions.rb', line 194 def code @code end |
#default_message=(value) ⇒ Object (writeonly)
Sets the attribute default_message
195 196 197 |
# File 'lib/zuora_api/exceptions.rb', line 195 def (value) @default_message = value end |
#errors ⇒ Object (readonly)
Returns the value of attribute errors.
194 195 196 |
# File 'lib/zuora_api/exceptions.rb', line 194 def errors @errors end |
#response ⇒ Object (readonly)
Returns the value of attribute response.
194 195 196 |
# File 'lib/zuora_api/exceptions.rb', line 194 def response @response end |
Instance Method Details
#to_s ⇒ Object
205 206 207 |
# File 'lib/zuora_api/exceptions.rb', line 205 def to_s @message || @default_message end |