Exception: Doorkeeper::Errors::BaseResponseError
- Inherits:
-
DoorkeeperError
- Object
- StandardError
- DoorkeeperError
- Doorkeeper::Errors::BaseResponseError
- Defined in:
- lib/doorkeeper/errors.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(response) ⇒ BaseResponseError
constructor
A new instance of BaseResponseError.
Methods inherited from DoorkeeperError
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
#response ⇒ Object (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_response ⇒ Object
77 78 79 |
# File 'lib/doorkeeper/errors.rb', line 77 def self.name_for_response name.demodulize.underscore.to_sym end |