Class/Module Index [+]

Quicksearch

Twitter::Error::ServerError

Raised when Twitter returns a 5xx HTTP status code

Constants

MESSAGE

Public Class Methods

from_response(response={}) click to toggle source

Create a new error from an HTTP environment

@param response [Hash] @return [Twitter::Error]

# File lib/twitter/error/server_error.rb, line 13
def self.from_response(response={})
  new(nil, response[:response_headers])
end
new(message=nil, response_headers={}) click to toggle source

Initializes a new ServerError object

@param message [String] @param response_headers [Hash] @return [Twitter::Error::ServerError]

# File lib/twitter/error/server_error.rb, line 22
def initialize(message=nil, response_headers={})
  super((message || self.class.const_get(:MESSAGE)), response_headers)
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.