Exception: OmniAuth::Strategies::Flickr::CallbackError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/generators/gunnertechnology/project/templates/config/initializers/omniauth.rb

Overview

error catching, based on OAuth2 callback

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(error, error_reason) ⇒ CallbackError

Returns a new instance of CallbackError.



16
17
18
19
# File 'lib/generators/gunnertechnology/project/templates/config/initializers/omniauth.rb', line 16

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

Instance Attribute Details

#errorObject

Returns the value of attribute error.



15
16
17
# File 'lib/generators/gunnertechnology/project/templates/config/initializers/omniauth.rb', line 15

def error
  @error
end

#error_reasonObject

Returns the value of attribute error_reason.



15
16
17
# File 'lib/generators/gunnertechnology/project/templates/config/initializers/omniauth.rb', line 15

def error_reason
  @error_reason
end