class TwitterLabsAPI::APIError

Constants

DEFAULT_MESSAGE

Attributes

response[R]

Public Class Methods

new(msg = DEFAULT_MESSAGE, response = nil) click to toggle source
Calls superclass method
# File lib/twitter_labs_api/api_error.rb, line 7
def initialize(msg = DEFAULT_MESSAGE, response = nil)
  @response = response
  
  super(msg)
end