Exception: Doorkeeper::Errors::BaseResponseError

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

Direct Known Subclasses

InvalidCodeChallengeMethod, InvalidTarget

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.



73
74
75
# File 'lib/doorkeeper/errors.rb', line 73

def initialize(response)
  @response = response
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



71
72
73
# File 'lib/doorkeeper/errors.rb', line 71

def response
  @response
end

Class Method Details

.name_for_responseObject



77
78
79
# File 'lib/doorkeeper/errors.rb', line 77

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