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:
516 517 518 519 |
# File 'lib/dropbox/api.rb', line 516 def initialize(request, response) # :nodoc: @request = request @response = response end |
Instance Attribute Details
#request ⇒ Object (readonly)
The request URL.
512 513 514 |
# File 'lib/dropbox/api.rb', line 512 def request @request end |
#response ⇒ Object (readonly)
The Net::HTTPResponse returned by the server.
514 515 516 |
# File 'lib/dropbox/api.rb', line 514 def response @response end |
Instance Method Details
#to_s ⇒ Object
:nodoc:
521 522 523 |
# File 'lib/dropbox/api.rb', line 521 def to_s # :nodoc: "API error: #{request}" end |