Exception: Chargify::Error::Base
- Inherits:
-
StandardError
- Object
- StandardError
- Chargify::Error::Base
- Defined in:
- lib/chargify/error.rb
Direct Known Subclasses
AccessDenied, BadRequest, ConnectionFailed, Forbidden, GatewayTimeout, NotFound, ServerError, UnexpectedResponse
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(response = nil) ⇒ Base
constructor
A new instance of Base.
Constructor Details
#initialize(response = nil) ⇒ Base
Returns a new instance of Base.
7 8 9 |
# File 'lib/chargify/error.rb', line 7 def initialize(response=nil) @response = response end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
5 6 7 |
# File 'lib/chargify/error.rb', line 5 def response @response end |