Exception: Twilio::REST::RestError

Inherits:
TwilioError
  • Object
show all
Defined in:
lib/twilio-ruby/framework/rest/error.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message, response) ⇒ RestError

Returns a new instance of RestError.



11
12
13
14
15
16
17
18
19
# File 'lib/twilio-ruby/framework/rest/error.rb', line 11

def initialize(message, response)
  @status_code = response.status_code
  @code = response.body.fetch('code', @status_code)
  @details = response.body.fetch('details', nil)
  @error_message = response.body.fetch('message', nil)
  @more_info = response.body.fetch('more_info', nil)
  @message = format_message(message)
  @response = response
end

Instance Attribute Details

#codeObject (readonly)

Returns the value of attribute code.



9
10
11
# File 'lib/twilio-ruby/framework/rest/error.rb', line 9

def code
  @code
end

#detailsObject (readonly)

Returns the value of attribute details.



9
10
11
# File 'lib/twilio-ruby/framework/rest/error.rb', line 9

def details
  @details
end

#error_messageObject (readonly)

Returns the value of attribute error_message.



9
10
11
# File 'lib/twilio-ruby/framework/rest/error.rb', line 9

def error_message
  @error_message
end

#messageObject (readonly)

Returns the value of attribute message.



9
10
11
# File 'lib/twilio-ruby/framework/rest/error.rb', line 9

def message
  @message
end

#more_infoObject (readonly)

Returns the value of attribute more_info.



9
10
11
# File 'lib/twilio-ruby/framework/rest/error.rb', line 9

def more_info
  @more_info
end

#responseObject (readonly)

Returns the value of attribute response.



9
10
11
# File 'lib/twilio-ruby/framework/rest/error.rb', line 9

def response
  @response
end

#status_codeObject (readonly)

Returns the value of attribute status_code.



9
10
11
# File 'lib/twilio-ruby/framework/rest/error.rb', line 9

def status_code
  @status_code
end

Instance Method Details

#to_sObject



21
22
23
# File 'lib/twilio-ruby/framework/rest/error.rb', line 21

def to_s
  message
end