Exception: TwitterLabsAPI::APIError
- Inherits:
-
StandardError
- Object
- StandardError
- TwitterLabsAPI::APIError
- Defined in:
- lib/twitter_labs_api/api_error.rb
Constant Summary collapse
- DEFAULT_MESSAGE =
'Twitter Labs API error, check the response attribute'.freeze
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(msg = DEFAULT_MESSAGE, response = nil) ⇒ APIError
constructor
A new instance of APIError.
Constructor Details
#initialize(msg = DEFAULT_MESSAGE, response = nil) ⇒ APIError
Returns a new instance of APIError.
7 8 9 10 11 |
# File 'lib/twitter_labs_api/api_error.rb', line 7 def initialize(msg = DEFAULT_MESSAGE, response = nil) @response = response super(msg) end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
5 6 7 |
# File 'lib/twitter_labs_api/api_error.rb', line 5 def response @response end |