Exception: OmniAuth::Strategies::Shopify::CallbackError

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

Overview

An error that is indicated in the OAuth 2.0 callback. This could be a ‘redirect_uri_mismatch` or other

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(error, error_reason = nil, error_uri = nil) ⇒ CallbackError

Returns a new instance of CallbackError.



27
28
29
30
31
# File 'lib/omniauth/strategies/shopify.rb', line 27

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

Instance Attribute Details

#errorObject

Returns the value of attribute error.



25
26
27
# File 'lib/omniauth/strategies/shopify.rb', line 25

def error
  @error
end

#error_reasonObject

Returns the value of attribute error_reason.



25
26
27
# File 'lib/omniauth/strategies/shopify.rb', line 25

def error_reason
  @error_reason
end

#error_uriObject

Returns the value of attribute error_uri.



25
26
27
# File 'lib/omniauth/strategies/shopify.rb', line 25

def error_uri
  @error_uri
end

Instance Method Details

#messageObject



33
34
35
# File 'lib/omniauth/strategies/shopify.rb', line 33

def message
  [error, error_reason, error_uri].compact.join(" | ")
end