Exception: Doorkeeper::Errors::BaseResponseError

Inherits:
DoorkeeperError
  • Object
show all
Defined in:
lib/doorkeeper/errors.rb

Direct Known Subclasses

InvalidCodeChallengeMethod

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoorkeeperError

translate_options, #type

Constructor Details

#initialize(response) ⇒ BaseResponseError

Returns a new instance of BaseResponseError.



43
44
45
# File 'lib/doorkeeper/errors.rb', line 43

def initialize(response)
  @response = response
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



41
42
43
# File 'lib/doorkeeper/errors.rb', line 41

def response
  @response
end

Class Method Details

.name_for_responseObject



47
48
49
# File 'lib/doorkeeper/errors.rb', line 47

def self.name_for_response
  self.name.demodulize.underscore.to_sym
end