class AdsCommon::Errors::CaptchaRequiredError

Raised when ClientLogin Captcha challenge occurs.

Attributes

auth_url[R]
captcha_token[R]
captcha_url[R]
error[R]

Public Class Methods

new(error, captcha_token, captcha_url, auth_url) click to toggle source
Calls superclass method AdsCommon::Errors::AuthError::new
# File lib/ads_common/errors.rb, line 53
def initialize(error, captcha_token, captcha_url, auth_url)
  super()
  @error, @captcha_token  = error, captcha_token
  @captcha_url, @auth_url = captcha_url, auth_url
end