Exception: Telegram::Bot::Exceptions::ResponseError

Inherits:
Base
  • Object
show all
Defined in:
lib/telegram/bot/exceptions/response_error.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ ResponseError

Returns a new instance of ResponseError.



9
10
11
12
# File 'lib/telegram/bot/exceptions/response_error.rb', line 9

def initialize(response)
  @response = response
  super
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



7
8
9
# File 'lib/telegram/bot/exceptions/response_error.rb', line 7

def response
  @response
end

Instance Method Details

#error_codeObject



19
20
21
# File 'lib/telegram/bot/exceptions/response_error.rb', line 19

def error_code
  data[:error_code] || data['error_code']
end

#to_sObject



14
15
16
17
# File 'lib/telegram/bot/exceptions/response_error.rb', line 14

def to_s
  super +
    format(' (%s)', data.map { |k, v| %(#{k}: "#{v}") }.join(', '))
end