Exception: Google::Apis::Error

Inherits:
StandardError
  • Object
show all
Defined in:
lib/google/apis/errors.rb

Overview

Base error, capable of wrapping another

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.



23
24
25
26
27
28
29
30
31
32
33
34
35
# File 'lib/google/apis/errors.rb', line 23

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.dup unless header.nil?
  @body = body
end

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body.



21
22
23
# File 'lib/google/apis/errors.rb', line 21

def body
  @body
end

#headerObject (readonly)

Returns the value of attribute header.



20
21
22
# File 'lib/google/apis/errors.rb', line 20

def header
  @header
end

#status_codeObject (readonly)

Returns the value of attribute status_code.



19
20
21
# File 'lib/google/apis/errors.rb', line 19

def status_code
  @status_code
end

Instance Method Details

#backtraceObject



37
38
39
40
41
42
43
# File 'lib/google/apis/errors.rb', line 37

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

#inspectObject



45
46
47
48
49
50
51
52
# File 'lib/google/apis/errors.rb', line 45

def inspect
  extra = ""
  extra << " status_code: #{status_code.inspect}" unless status_code.nil?
  extra << " header: #{header.inspect}"           unless header.nil?
  extra << " body: #{body.inspect}"               unless body.nil?

  "#<#{self.class.name}: #{message}#{extra}>"
end