Exception: Naver::Searchad::Api::Error

Inherits:
StandardError
  • Object
show all
Defined in:
lib/naver/searchad/api/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(err, status_code: nil, header: nil, body: nil) ⇒ Error

Returns a new instance of Error.



9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/naver/searchad/api/errors.rb', line 9

def initialize(err, status_code: nil, header: nil, body: nil)
  @cause = nil

  if err.respond_to?(:backtrace)
    super(err.message)
    @cause = err
  else
    super(err.to_s)
  end
  @status_code = status_code
  @header = header unless header.nil?
  @body = body
end

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body.



7
8
9
# File 'lib/naver/searchad/api/errors.rb', line 7

def body
  @body
end

#headerObject (readonly)

Returns the value of attribute header.



6
7
8
# File 'lib/naver/searchad/api/errors.rb', line 6

def header
  @header
end

#status_codeObject (readonly)

Returns the value of attribute status_code.



5
6
7
# File 'lib/naver/searchad/api/errors.rb', line 5

def status_code
  @status_code
end

Instance Method Details

#backtraceObject



23
24
25
26
27
28
29
# File 'lib/naver/searchad/api/errors.rb', line 23

def backtrace
  if @cause
    @cause.backtrace
  else
    super
  end
end