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

- (Problem) initialize(problem, request = nil, params = {})

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

- (Object) params (readonly)

Returns the value of attribute params



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

def params
  @params
end

- (Object) problem (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

- (Object) to_s



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

def to_s
  problem
end