Exception: AliexpressAPI::ResponseError
- Defined in:
- lib/aliexpress_api/exceptions.rb
Direct Known Subclasses
BadRequestError, ForbiddenAccessError, RedirectionError, ResourceInvalidError, ResourceNotFoundError, ServerError, TooManyRequestsError, UnauthorizedAccessError
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/aliexpress_api/exceptions.rb', line 14 def initialize(response, = nil) @response = response = end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
12 13 14 |
# File 'lib/aliexpress_api/exceptions.rb', line 12 def response @response end |
Instance Method Details
#to_s ⇒ Object
19 20 21 22 23 24 25 26 27 28 |
# File 'lib/aliexpress_api/exceptions.rb', line 19 def to_s = +'Failed.' if response.respond_to?(:code) << " Response code = #{response.code}." end if response.respond_to?(:to_s) << " Response message = #{response}." end end |