Exception: Dropbox::APIError
- Defined in:
- lib/dropbox/api.rb
Overview
Superclass for exceptions raised when the server reports an error.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#request ⇒ Object
readonly
The request URL.
-
#response ⇒ Object
readonly
The Net::HTTPResponse returned by the server.
Instance Method Summary collapse
-
#initialize(request, response) ⇒ APIError
constructor
:nodoc:.
-
#to_s ⇒ Object
:nodoc:.
Constructor Details
#initialize(request, response) ⇒ APIError
:nodoc:
508 509 510 511 |
# File 'lib/dropbox/api.rb', line 508 def initialize(request, response) # :nodoc: @request = request @response = response end |
Instance Attribute Details
#request ⇒ Object (readonly)
The request URL.
504 505 506 |
# File 'lib/dropbox/api.rb', line 504 def request @request end |
#response ⇒ Object (readonly)
The Net::HTTPResponse returned by the server.
506 507 508 |
# File 'lib/dropbox/api.rb', line 506 def response @response end |
Instance Method Details
#to_s ⇒ Object
:nodoc:
513 514 515 |
# File 'lib/dropbox/api.rb', line 513 def to_s # :nodoc: "API error: #{request}" end |