Exception: TelegramBot::ResponseError
- Inherits:
-
StandardError
- Object
- StandardError
- TelegramBot::ResponseError
- Defined in:
- lib/telegram_bot/response_error.rb
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
- #data ⇒ Object
-
#initialize(res) ⇒ ResponseError
constructor
A new instance of ResponseError.
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
#response ⇒ Object (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
#data ⇒ Object
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 |