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.
4 5 6 7 8 |
# File 'lib/oauth/errors/problem.rb', line 4 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.
3 4 5 |
# File 'lib/oauth/errors/problem.rb', line 3 def params @params end |
#problem ⇒ Object (readonly)
Returns the value of attribute problem.
3 4 5 |
# File 'lib/oauth/errors/problem.rb', line 3 def problem @problem end |
Instance Method Details
#to_s ⇒ Object
10 11 12 |
# File 'lib/oauth/errors/problem.rb', line 10 def to_s problem end |