Exception: OAuth::Problem

Inherits:
Unauthorized show all
Defined in:
lib/oauth/errors/problem.rb

Instance Attribute Summary collapse

Attributes inherited from Unauthorized

#request

Instance Method Summary collapse

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

#paramsObject (readonly)

Returns the value of attribute params.



3
4
5
# File 'lib/oauth/errors/problem.rb', line 3

def params
  @params
end

#problemObject (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_sObject



10
11
12
# File 'lib/oauth/errors/problem.rb', line 10

def to_s
  problem
end