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.



154
155
156
157
# File 'lib/omniauth/strategies/wechat.rb', line 154

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.



153
154
155
# File 'lib/omniauth/strategies/wechat.rb', line 153

def error
  @error
end

#error_reasonObject

Returns the value of attribute error_reason.



153
154
155
# File 'lib/omniauth/strategies/wechat.rb', line 153

def error_reason
  @error_reason
end

Instance Method Details

#messageObject



159
160
161
# File 'lib/omniauth/strategies/wechat.rb', line 159

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