Exception: OmniAuth::Strategies::WeChat::CallbackError
- Inherits:
-
StandardError
- Object
- StandardError
- OmniAuth::Strategies::WeChat::CallbackError
- Defined in:
- lib/omniauth/strategies/wechat.rb
Instance Attribute Summary collapse
-
#error ⇒ Object
Returns the value of attribute error.
-
#error_reason ⇒ Object
Returns the value of attribute error_reason.
Instance Method Summary collapse
-
#initialize(error, error_reason = nil) ⇒ CallbackError
constructor
A new instance of CallbackError.
- #message ⇒ Object
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
#error ⇒ Object
Returns the value of attribute error.
153 154 155 |
# File 'lib/omniauth/strategies/wechat.rb', line 153 def error @error end |
#error_reason ⇒ Object
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
#message ⇒ Object
159 160 161 |
# File 'lib/omniauth/strategies/wechat.rb', line 159 def [self.error, self.error_reason].compact.join(' | ') end |