Exception: OmniAuth::Strategies::WeChat::CallbackError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/omniauth/strategies/wechat.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(error, error_reason = nil) ⇒ CallbackError

Returns a new instance of CallbackError.



146
147
148
149
# File 'lib/omniauth/strategies/wechat.rb', line 146

def initialize(error, error_reason=nil)
  self.error = error
  self.error_reason = error_reason
end

Instance Attribute Details

#errorObject

Returns the value of attribute error.



145
146
147
# File 'lib/omniauth/strategies/wechat.rb', line 145

def error
  @error
end

#error_reasonObject

Returns the value of attribute error_reason.



145
146
147
# File 'lib/omniauth/strategies/wechat.rb', line 145

def error_reason
  @error_reason
end

Instance Method Details

#messageObject



151
152
153
# File 'lib/omniauth/strategies/wechat.rb', line 151

def message
  [self.error, self.error_reason].compact.join(' | ')
end