class Flickr::OAuthClient::FailedResponse

Public Class Methods

new(str) click to toggle source
Calls superclass method
# File lib/flickr/oauth_client.rb, line 10
def initialize(str)
  @response = OAuthClient.parse_response(str)
  super(@response['oauth_problem'])
end