Exception: Twitter::TwitterError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/twitter.rb

Direct Known Subclasses

General, RateLimitExceeded, Unauthorized

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data) ⇒ TwitterError

Returns a new instance of TwitterError.



11
12
13
14
# File 'lib/twitter.rb', line 11

def initialize(data)
  @data = data
  super
end

Instance Attribute Details

#dataObject (readonly)

Returns the value of attribute data.



9
10
11
# File 'lib/twitter.rb', line 9

def data
  @data
end