Exception: OAuth::Problem
- Inherits:
-
Unauthorized
- Object
- StandardError
- Error
- Unauthorized
- OAuth::Problem
- Defined in:
- lib/oauth/errors/problem.rb
Instance Attribute Summary collapse
-
#params ⇒ Object
readonly
Returns the value of attribute params.
-
#problem ⇒ Object
readonly
Returns the value of attribute problem.
Attributes inherited from Unauthorized
Instance Method Summary collapse
-
#initialize(problem, request = nil, params = {}) ⇒ Problem
constructor
A new instance of Problem.
- #to_s ⇒ Object
Constructor Details
#initialize(problem, request = nil, params = {}) ⇒ Problem
Returns a new instance of Problem.
7 8 9 10 11 |
# File 'lib/oauth/errors/problem.rb', line 7 def initialize(problem, request = nil, params = {}) super(request) @problem = problem @params = params end |
Instance Attribute Details
#params ⇒ Object (readonly)
Returns the value of attribute params.
5 6 7 |
# File 'lib/oauth/errors/problem.rb', line 5 def params @params end |
#problem ⇒ Object (readonly)
Returns the value of attribute problem.
5 6 7 |
# File 'lib/oauth/errors/problem.rb', line 5 def problem @problem end |
Instance Method Details
#to_s ⇒ Object
13 14 15 |
# File 'lib/oauth/errors/problem.rb', line 13 def to_s problem end |