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.
43 44 45 |
# File 'lib/doorkeeper/errors.rb', line 43 def initialize(response) @response = response end |
Instance Attribute Details
#response ⇒ Object (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_response ⇒ Object
47 48 49 |
# File 'lib/doorkeeper/errors.rb', line 47 def self.name_for_response self.name.demodulize.underscore.to_sym end |