Exception: ActiveMerchant::ResponseError
- Inherits:
-
ActiveMerchantError
- Object
- StandardError
- ActiveMerchantError
- ActiveMerchant::ResponseError
- Defined in:
- lib/active_utils/common/error.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(response, message = nil) ⇒ ResponseError
constructor
A new instance of ResponseError.
- #to_s ⇒ Object
Constructor Details
#initialize(response, message = nil) ⇒ ResponseError
Returns a new instance of ResponseError.
14 15 16 17 |
# File 'lib/active_utils/common/error.rb', line 14 def initialize(response, = nil) @response = response @message = end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
12 13 14 |
# File 'lib/active_utils/common/error.rb', line 12 def response @response end |
Instance Method Details
#to_s ⇒ Object
19 20 21 |
# File 'lib/active_utils/common/error.rb', line 19 def to_s "Failed with #{response.code} #{response. if response.respond_to?(:message)}" end |