telegram.error module

This module contains an object that represents Telegram errors.

exception telegram.error.BadRequest(message)

Bases: telegram.error.NetworkError

exception telegram.error.ChatMigrated(new_chat_id)

Bases: telegram.error.TelegramError

Parameters

new_chat_id (int) – The new chat id of the group.

exception telegram.error.Conflict(message)

Bases: telegram.error.TelegramError

Raised when a long poll or webhook conflicts with another one.

Parameters

msg (str) – The message from telegrams server.

exception telegram.error.InvalidToken

Bases: telegram.error.TelegramError

exception telegram.error.NetworkError(message)

Bases: telegram.error.TelegramError

exception telegram.error.RetryAfter(retry_after)

Bases: telegram.error.TelegramError

Parameters

retry_after (int) – Time in seconds, after which the bot can retry the request.

exception telegram.error.TelegramError(message)

Bases: Exception

exception telegram.error.TimedOut

Bases: telegram.error.NetworkError

exception telegram.error.Unauthorized(message)

Bases: telegram.error.TelegramError