Exception: TelegramBot::ResponseError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/telegram_bot/response_error.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(res) ⇒ ResponseError

Returns a new instance of ResponseError.



5
6
7
# File 'lib/telegram_bot/response_error.rb', line 5

def initialize(res)
  @response = res
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



3
4
5
# File 'lib/telegram_bot/response_error.rb', line 3

def response
  @response
end

Instance Method Details

#dataObject



9
10
11
12
13
14
15
# File 'lib/telegram_bot/response_error.rb', line 9

def data
  @data ||= begin
    JSON.parse(response.body)
  rescue JSON::ParserError
    { error_code: response.status, error_message: response.reason_phrase }
  end
end