class AdsCommon::Errors::AuthError
Raised if an attempt is made to authenticate with missing or wrong information.
Attributes
error[R]
info[R]
Public Class Methods
new(message = self.class.to_s, error = nil, info = nil)
click to toggle source
Calls superclass method
# File lib/ads_common/errors.rb, line 34 def initialize(message = self.class.to_s, error = nil, info = nil) super(message) @error, @info = error, info end